- set timeout for isolinux to 1 minute

- copy util-linux to ramdisk
  TODO:
   - do this with other tools as well in a bit more generic way

svn path=/nixu/trunk/; revision=3524
This commit is contained in:
Armijn Hemel 2005-08-03 18:14:47 +00:00
parent 93bcd71b15
commit 81bfae51f7
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
default linux default linux
prompt 1 prompt 1
timeout 600 timeout 60
label linux label linux
kernel vmlinuz kernel vmlinuz
append initrd=initram.img init=/bin/sh append initrd=initram.img init=/bin/sh

View File

@ -134,6 +134,7 @@ cp ${bash}/bin/* ${initdir}/bin
#cp -f /nix/store/570hmhmx3v57605cqg9yfvvyh0nnb8k8-bash ${initdir}/bin/sh #cp -f /nix/store/570hmhmx3v57605cqg9yfvvyh0nnb8k8-bash ${initdir}/bin/sh
chmod u+x ${initdir}/init chmod u+x ${initdir}/init
cp -fau --parents ${bashdeps} ${initdir} cp -fau --parents ${bashdeps} ${initdir}
cp -fau --parents ${utilLinux} ${initdir}
#(cd ${initdir}; find . |cpio -c -o) | gzip -9 > ${initrd} #(cd ${initdir}; find . |cpio -c -o) | gzip -9 > ${initrd}
(cd ${archivesDir}/initdir; find . |cpio -c -o) | gzip -9 > ${initrd} (cd ${archivesDir}/initdir; find . |cpio -c -o) | gzip -9 > ${initrd}