Notice: the grml team is migrating from Mercurial to Git.
Please visit git.grml.org instead!
| author | Michael Prokop |
| Fri Feb 15 14:32:31 2008 +0100 (9 months ago) | |
| changeset 482 | 0476da507b57 |
| manifest | 0476da507b57 |
| parent 481 | 479b5eed548d |
| child 483 | 841117315b84 |
--- a/debian/changelog Thu Feb 14 12:04:00 2008 +0100+++ b/debian/changelog Fri Feb 15 14:32:31 2008 +0100@@ -10,8 +10,17 @@ grml-live (0.4) unstable; urgency=low- rt2400-modules-2.6.23-grml- rt2500-modules-2.6.23-grml- rt73-module-2.6.23-grml-- -- Michael Prokop <mika@grml.org> Wed, 13 Feb 2008 19:23:47 +0100+ * Finally fixed the "isolinux does not boot on old hardware" problem.+ The problem was a too big boot/isolinux directory. Thanks a lot+ for all the testing to Andrea Mayr and Wernfried Haas!+ - use /boot/addons/* for allinone.img, balder10.imz, chain.c32,+ menu.c32 and memtest+ - place $GRML_NAME in /boot/$GRML_NAME/ - this should easify+ support of several grml flavours on one single usb pen for the future+ - adjust grub's menu.lst and isolinux.cfg as well as grml-live itself+ for new directory layout++ -- Michael Prokop <mika@grml.org> Fri, 15 Feb 2008 14:28:45 +0100grml-live (0.3) unstable; urgency=low
--- a/grml-live Thu Feb 14 12:04:00 2008 +0100+++ b/grml-live Fri Feb 15 14:32:31 2008 +0100@@ -4,7 +4,7 @@# Authors: grml-team (grml.org), (c) Michael Prokop <mika@grml.org># Bug-Reports: see http://grml.org/bugs/# License: This file is licensed under the GPL v2 or any later version.-# Latest change: Wed Feb 13 19:24:12 CET 2008 [mika]+# Latest change: Fri Feb 15 14:28:37 CET 2008 [mika]################################################################################# read configuration files, set some misc variables {{{@@ -441,14 +441,17 @@ if [ "$ARCH" = i386 ] || [ "$ARCH" = amdewarn "$BUILD_OUTPUT/boot exists already, skipping stage 'boot'" ; eend 0else# booting stuff:+ [ -d "$BUILD_OUTPUT"/boot/addons ] || mkdir -p "$BUILD_OUTPUT"/boot/addons[ -d "$BUILD_OUTPUT"/boot/isolinux ] || mkdir -p "$BUILD_OUTPUT"/boot/isolinux- cp /boot/memtest86+.bin "$BUILD_OUTPUT"/boot/isolinux/memtest+ [ -d "$BUILD_OUTPUT"/boot/"${GRML_NAME}" ] || mkdir -p "$BUILD_OUTPUT"/boot/"${GRML_NAME}"++ cp /boot/memtest86+.bin "$BUILD_OUTPUT"/boot/addons/memtest# if we don't have an initrd we a) can't boot and b) there was an error# during build, so check for the file:INITRD="$(ls $CHROOT_OUTPUT/boot/initrd* 2>/dev/null| grep -v '.bak$' | sort -r | head -1)"if [ -n "$INITRD" ] ; then- cp $INITRD "$BUILD_OUTPUT"/boot/isolinux/initrd.gz+ cp $INITRD "$BUILD_OUTPUT"/boot/"${GRML_NAME}"/initrd.gzfind $CHROOT_OUTPUT/boot/ -name initrd\*.bak -exec rm {} \;elselog "No initrd found inside $CHROOT_OUTPUT/boot/ - Exiting"@@ -458,7 +461,7 @@ if [ "$ARCH" = i386 ] || [ "$ARCH" = amdKERNEL_IMAGE="$(ls $CHROOT_OUTPUT/boot/vmlinuz* 2>/dev/null | sort -r | head -1)"if [ -n "$KERNEL_IMAGE" ] ; then- cp "$KERNEL_IMAGE" "$BUILD_OUTPUT"/boot/isolinux/linux26+ cp "$KERNEL_IMAGE" "$BUILD_OUTPUT"/boot/"${GRML_NAME}"/linux26elselog "No kernel found inside $CHROOT_OUTPUT/boot/ - Exiting"eerror "No kernel found inside $CHROOT_OUTPUT/boot/ - Exiting" ; eend 1@@ -473,7 +476,7 @@ if [ "$ARCH" = i386 ] || [ "$ARCH" = amdficp ${TEMPLATE_DIRECTORY}/boot/isolinux/* "$BUILD_OUTPUT"/boot/isolinux/- cp ${TEMPLATE_DIRECTORY}/boot/isolinux/* "$BUILD_OUTPUT"/boot/isolinux/+ cp ${TEMPLATE_DIRECTORY}/boot/addons/* "$BUILD_OUTPUT"/boot/addons/if ! [ -d "${BUILD_OUTPUT}/boot/grub" ] ; thencp -a ${TEMPLATE_DIRECTORY}/boot/grub "$BUILD_OUTPUT"/boot/@@ -549,10 +552,10 @@ else# execute squashfs:if mksquashfs --help 2>&1 | grep -q -- -no-progress ; thenlog "mksquashfs $CHROOT_OUTPUT/* $BUILD_OUTPUT/live/grml.squashfs -noappend -no-progress"- mksquashfs $CHROOT_OUTPUT/* $BUILD_OUTPUT/live/grml.squashfs -noappend -no-progress $SQUASHFS_OPTIONS $SQUASHFS_ZLIB+ mksquashfs $CHROOT_OUTPUT/* $BUILD_OUTPUT/live/"${GRML_NAME}".squashfs -noappend -no-progress $SQUASHFS_OPTIONS $SQUASHFS_ZLIBelselog "mksquashfs $CHROOT_OUTPUT/* $BUILD_OUTPUT/live/grml.squashfs -noappend"- mksquashfs $CHROOT_OUTPUT/* $BUILD_OUTPUT/live/grml.squashfs -noappend $SQUASHFS_OPTIONS $SQUASHFS_ZLIB+ mksquashfs $CHROOT_OUTPUT/* $BUILD_OUTPUT/live/"${GRML_NAME}".squashfs -noappend $SQUASHFS_OPTIONS $SQUASHFS_ZLIBfilog "Finished execution of stage 'squashfs' [$(date)]"einfo "Finished execution of stage 'squashfs'" ; eend 0
--- a/templates/boot/grub/menu.lst Thu Feb 14 12:04:00 2008 +0100+++ b/templates/boot/grub/menu.lst Fri Feb 15 14:32:31 2008 +0100@@ -13,56 +13,56 @@ background = FFCC33# define entries:title %GRML_NAME% %VERSION% - Default boot (using 1024x768 framebuffer)-kernel /boot/isolinux/linux26 apm=power-off lang=us vga=791 quiet boot=live nomce-initrd /boot/isolinux/initrd.gz+kernel /boot/grml/linux26 apm=power-off lang=us vga=791 quiet boot=live nomce+initrd /boot/grml/initrd.gztitle %GRML_NAME% %VERSION% - without framebuffer-kernel /boot/isolinux/linux26 apm=power-off lang=us vga=normal video=ofonly quiet initrd=initrd.gz boot=live nomce-initrd /boot/isolinux/initrd.gz+kernel /boot/grml/linux26 apm=power-off lang=us vga=normal video=ofonly quiet initrd=initrd.gz boot=live nomce+initrd /boot/grml/initrd.gztitle %GRML_NAME% %VERSION% - with 1280x1024 framebuffer-kernel /boot/isolinux/linux26 apm=power-off lang=us vga=794 quiet initrd=initrd.gz boot=live nomce-initrd /boot/isolinux/initrd.gz+kernel /boot/grml/linux26 apm=power-off lang=us vga=794 quiet initrd=initrd.gz boot=live nomce+initrd /boot/grml/initrd.gztitle %GRML_NAME% %VERSION% - with 800x600 framebuffer-kernel /boot/isolinux/linux26 apm=power-off lang=us vga=788 quiet initrd=initrd.gz boot=live nomce-initrd /boot/isolinux/initrd.gz+kernel /boot/grml/linux26 apm=power-off lang=us vga=788 quiet initrd=initrd.gz boot=live nomce+initrd /boot/grml/initrd.gztitle %GRML_NAME% %VERSION% - failsafe boot-kernel /boot/isolinux/linux26 vga=normal lang=us boot=live noautoconfig atapicd noacpi acpi=off nomodules nofirewire noudev nousb nohotplug noapm nopcmcia maxcpus=1 noscsi noagp nodma ide=nodma noswap nofstab nosound nogpm nosyslog nodhcp nocpu nodisc nomodem xmodule=vesa noraid nolvm-initrd /boot/isolinux/initrd.gz+kernel /boot/grml/linux26 vga=normal lang=us boot=live noautoconfig atapicd noacpi acpi=off nomodules nofirewire noudev nousb nohotplug noapm nopcmcia maxcpus=1 noscsi noagp nodma ide=nodma noswap nofstab nosound nogpm nosyslog nodhcp nocpu nodisc nomodem xmodule=vesa noraid nolvm+initrd /boot/grml/initrd.gztitle %GRML_NAME% %VERSION% - debug mode-kernel /boot/isolinux/linux26 apm=power-off lang=us vga=791 verbose debug=vc debug initrd=initrd.gz boot=live initcall_debug nomce-initrd /boot/isolinux/initrd.gz+kernel /boot/grml/linux26 apm=power-off lang=us vga=791 verbose debug=vc debug initrd=initrd.gz boot=live initcall_debug nomce+initrd /boot/grml/initrd.gztitle %GRML_NAME% %VERSION% - copy grml squashfs file to RAM-kernel /boot/isolinux/linux26 toram=grml.squashfs apm=power-off lang=us vga=791 quiet boot=live nomce-initrd /boot/isolinux/initrd.gz+kernel /boot/grml/linux26 toram=grml.squashfs apm=power-off lang=us vga=791 quiet boot=live nomce+initrd /boot/grml/initrd.gztitle %GRML_NAME% %VERSION% - copy medium to RAM-kernel /boot/isolinux/linux26 toram apm=power-off lang=us vga=791 quiet boot=live nomce-initrd /boot/isolinux/initrd.gz+kernel /boot/grml/linux26 toram apm=power-off lang=us vga=791 quiet boot=live nomce+initrd /boot/grml/initrd.gztitle %GRML_NAME% %VERSION% - grml2hd - install grml to local harddisk [adjust it!]-kernel /boot/isolinux/linux26 apm=power-off lang=us vga=791 quiet boot=live nomce partition=/dev/ice1 mbr=/dev/ice-initrd /boot/isolinux/initrd.gz+kernel /boot/grml/linux26 apm=power-off lang=us vga=791 quiet boot=live nomce partition=/dev/ice1 mbr=/dev/ice+initrd /boot/grml/initrd.gztitle %GRML_NAME% %VERSION% - forensic mode-kernel /boot/isolinux/linux26 vga=791 lang=us nofstab noraid nolvm noautoconfig noswap raid=noautodetect quiet initrd=initrd.gz boot=live-initrd /boot/isolinux/initrd.gz+kernel /boot/grml/linux26 vga=791 lang=us nofstab noraid nolvm noautoconfig noswap raid=noautodetect quiet initrd=initrd.gz boot=live+initrd /boot/grml/initrd.gztitle %GRML_NAME% %VERSION% - serial console mode-kernel /boot/isolinux/linux26 apm=power-off lang=us vga=normal video=vesafb:off quiet initrd=initrd.gz boot=live nomce console=tty1 console=ttyS0,9600n8-initrd /boot/isolinux/initrd.gz+kernel /boot/grml/linux26 apm=power-off lang=us vga=normal video=vesafb:off quiet initrd=initrd.gz boot=live nomce console=tty1 console=ttyS0,9600n8+initrd /boot/grml/initrd.gztitle Run memtest86+-kernel /boot/isolinux/memtest+kernel /boot/addons/memtesttitle Boot FreeDOS-kernel /boot/isolinux/memdisk-initrd /boot/isolinux/balder10.imz+kernel /boot/addons/memdisk+initrd /boot/addons/balder10.imz# title %GRML_NAME% %VERSION% - old boot method-# kernel /boot/isolinux/linux26 ramdisk_size=100000 init=/etc/init apm=power-off lang=us vga=791 nomce quiet grml_dir="live" grml_name="grml.squashfs"-# initrd /boot/isolinux/minirt26.gz+# kernel /boot/grml/linux26 ramdisk_size=100000 init=/etc/init apm=power-off lang=us vga=791 nomce quiet grml_dir="live" grml_name="grml.squashfs"+# initrd /boot/grml/minirt26.gz
--- a/templates/boot/isolinux/isolinux.cfg Thu Feb 14 12:04:00 2008 +0100+++ b/templates/boot/isolinux/isolinux.cfg Fri Feb 15 14:32:31 2008 +0100@@ -27,123 +27,123 @@ LABEL grmlLABEL grmlMENU LABEL grml - Standard BootupMENU DEFAULT-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us vga=791 quiet initrd=initrd.gz boot=live nomceLABEL grml2ramMENU LABEL grml2ram - Copy Squashfs file to RAMMENU DEFAULT-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off toram=grml.squashfs lang=us vga=791 quiet initrd=initrd.gz boot=live nomceLABEL splashMENU LABEL grml - Bootsplash-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us vga=791 quiet initrd=initrd.gz boot=live splash nomceLABEL grml2hdMENU LABEL grml2hd-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us quiet initrd=initrd.gz boot=live nomceLABEL debian2hdMENU LABEL debian2hd-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us vga=791 initrd=initrd.gz boot=live BOOT_IMAGE=debian2hd nomceLABEL debugMENU LABEL debug-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us vga=791 verbose debug=vc debug initrd=initrd.gz boot=live initcall_debug nomceLABEL bootchartMENU LABEL bootchart-KERNEL linux26+KERNEL /boot/grml/linux26APPEND init=/sbin/bootchartd apm=power-off lang=us vga=791 quiet initrd=initrd.gz boot=live nomceLABEL vmwareMENU LABEL vmware-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us nousb nousb2 nofirewire vga=791 quiet initrd=initrd.gz boot=live nomceLABEL qemuMENU LABEL qemu-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us nousb nousb2 nofirewire vga=791 quiet initrd=initrd.gz boot=live nomce qemuLABEL grmlxMENU LABEL grmlx-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us startx=wm-ng vga=791 quiet initrd=initrd.gz boot=live nomceLABEL nofbMENU LABEL grml without framebuffer-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us vga=normal video=ofonly quiet initrd=initrd.gz boot=live nomceLABEL linux26MENU LABEL linux26-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us vga=791 quiet initrd=initrd.gz boot=live nomceLABEL memtestMENU LABEL memtest-KERNEL memtest+KERNEL /boot/addons/memtestAPPEND BOOT_IMAGE=memtestLABEL fb1280x1024MENU LABEL fb1280x1024-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us vga=794 quiet initrd=initrd.gz boot=live nomceLABEL fb1024x768MENU LABEL fb1024x768-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us vga=791 quiet initrd=initrd.gz boot=live nomceLABEL fb800x600MENU LABEL fb800x600-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us vga=788 quiet initrd=initrd.gz boot=live nomceLABEL failsafeMENU LABEL failsafe-KERNEL linux26+KERNEL /boot/grml/linux26APPEND initrd=initrd.gz vga=normal lang=us boot=live noautoconfig atapicd noacpi acpi=off nomodules nofirewire noudev nousb nohotplug noapm nopcmcia maxcpus=1 noscsi noagp nodma ide=nodma noswap nofstab nosound nogpm nosyslog nodhcp nocpu nodisc nomodem xmodule=vesa noraid nolvmLABEL forensicMENU LABEL forensic-KERNEL linux26+KERNEL /boot/grml/linux26APPEND vga=791 lang=us nofstab noraid nolvm noautoconfig noswap raid=noautodetect quiet initrd=initrd.gz boot=liveLABEL grubMENU LABEL grub-KERNEL memdisk-APPEND initrd=allinone.img+KERNEL /boot/addons/memdisk+APPEND initrd=/boot/addons/allinone.imgLABEL dosMENU LABEL dos-KERNEL memdisk-APPEND initrd=balder10.imz+KERNEL /boot/addons/memdisk+APPEND initrd=/boot/addons/balder10.imzLABEL serialMENU LABEL serial-KERNEL linux26+KERNEL /boot/grml/linux26APPEND apm=power-off lang=us vga=normal video=vesafb:off quiet initrd=initrd.gz boot=live nomce console=tty1 console=ttyS0,9600n8LABEL userdefMENU LABEL User definedMENU HIDE-KERNEL linux26+KERNEL /boot/grml/linux26APPEND ###############################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################LABEL hdaMENU LABEL Boot First Harddrive (via chain.c32)-KERNEL chain.c32+KERNEL /boot/addons/chain.c32APPEND hd0 0LABEL fd0MENU LABEL Boot First Floppy Drive (via chain.c32)-KERNEL chain.c32+KERNEL /boot/addons/chain.c32APPEND fd0LABEL hd
Binary file templates/boot/addons/allinone.img has changed
Binary file templates/boot/addons/balder10.imz has changed
Binary file templates/boot/addons/chain.c32 has changed
Binary file templates/boot/addons/memdisk has changed
Binary file templates/boot/addons/menu.c32 has changed
Binary file templates/boot/isolinux/allinone.img has changed
Binary file templates/boot/isolinux/balder10.imz has changed
Binary file templates/boot/isolinux/chain.c32 has changed
Binary file templates/boot/isolinux/memdisk has changed
Binary file templates/boot/isolinux/menu.c32 has changed