Re: DI to detect HIGHMEM

2008-05-24 Thread Jérémy Bobbio
On Wed, May 21, 2008 at 04:48:25PM +0430, Armin ranjbar wrote: > as you know , when there is need for BIGMEM kernels , kernel prints > warning in dmesg log : > > Warning only 4GB will be used. > Use a HIGHMEM64G enabled kernel. > > as for net install , this error is not presented (while it is sho

DI to detect HIGHMEM

2008-05-21 Thread Armin ranjbar
Hey all , i was wondering if its possible to automatically detect HIGHMEM system for BIGMEM kernels , this is home solution for that : #!/bin/sh grep -q HIGHMEM /var/log/syslog if [ $? = 0 ];then find /cdrom/pool/main/l/linux-2.6/ -iname "*bigmem*" -exec cp {} /target/ibs/Debs/ ';' fi as you k