From: Heiko Z. <smi...@us...> - 2004-09-05 16:00:17
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14715 Modified Files: Tag: rel-1-2-patches build-iso Log Message: use better and parallel compression Index: build-iso =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build-iso,v retrieving revision 1.65 retrieving revision 1.65.2.1 diff -u -d -r1.65 -r1.65.2.1 --- build-iso 4 May 2004 01:04:57 -0000 1.65 +++ build-iso 5 Sep 2004 16:00:06 -0000 1.65.2.1 @@ -91,7 +91,7 @@ if [ "$CONFIG_ZISOFS" = "y" ]; then echo creating compressed ISO filesystem test -d $CDDIR.z && rm -rf $CDDIR.z - mkzftree $CDDIR $CDDIR.z || exit 1 + mkzftree -z 9 -p $CONFIG_PMAKE $CDDIR $CDDIR.z || exit 1 MKISOFS_PARAM="$MKISOFS_PARAM -z" # now we need to restore the files which shouldn't be compressed @@ -132,7 +132,7 @@ # store version echo $DLVERSION > $INITRDDIR/VERSION cp -p $ETCDIR/etc/initrd/linuxrc $INITRDDIR - mkcramfs $INITRDDIR/ $BOOTIMAGEDIR/initrd + mkfs.cramfs $INITRDDIR/ $BOOTIMAGEDIR/initrd gzip -f -9 $BOOTIMAGEDIR/initrd echo "done" @@ -240,6 +240,15 @@ BOOT_OPTIONS_MODE=( "80x25" "640x480" "800x600" "1024x768" "ask" ) BOOT_OPTIONS_KERNEL_MODE=( "NORMAL_VGA" "769" "771" "773" "ask" ) BOOT_OPTION_DEFAULT=0 + # vga=xxx sets the framebuffer console to a specific resolution. + # Here is a table you can use so it can help you decide + # what resolution you want to use: + # colour depth | 640x480 800x600 1024x768 1280x1024 + # 256 (8bit) | 769 771 773 775 + # 32000 (15bit) | 784 787 790 793 + # 65000 (16bit) | 785 788 791 794 + # 16.7 Mill. (24bit) | 786 789 792 795 + i=0 while [ $i -lt ${#BOOT_OPTIONS_TEXT[@]} ] |