Fallen Kell
Group: Members
Posts: 21
Joined: May 2005 |
|
Posted: June 02 2005,20:16 |
|
If you want this from the CD, then you could edit the linuxrc in the minirt24.gz file and add the vga or whatever code you use and append it to the $CMDLINE variable and then remaster the CD:
Follow the remaster guides but instead of simply copying the minirt24.gz file into the newcd/boot/isolinux do the following:
gunzip minirt24.gz mount -o loop ./minirt24 /mnt/temp cd /mnt/temp vi linuxrc
(after the CMDLINE=$(cat /proc/cmdline) ) CMDLINE=$($CMDLINE vga=blah)
:wq!
umount /mnt/temp gzip ./minirt24 cp ./minirt24.gz /newcd/boot/isolinux
And follow the rest of the normal remaster commands. There may be a better place to do this since this is truely a hack and not a true solution, but it would work. If it is in a hard drive install or frugal install, change the lilo boot loader's APPEND line to add in the code there.
|