Removed the VGA optin from the kernel invocation since the default kernel configuration doesn't provide proper VGA support for BIOS based motherboards. Updated some log messages.

This commit is contained in:
Ivan Davidov 2016-04-25 21:36:27 +03:00
parent dfc4cfd22d
commit a39bdd4173
2 changed files with 3 additions and 3 deletions

View File

@ -26,12 +26,12 @@
# | # |
# +--(2) /bin/sh (Alt + F4) # +--(2) /bin/sh (Alt + F4)
echo "Suppress most kernel messages."
dmesg -n 1 dmesg -n 1
echo "Most kernel messages have been suppressed."
echo "Mount all core filesystems."
mount -t devtmpfs none /dev mount -t devtmpfs none /dev
mount -t proc none /proc mount -t proc none /proc
mount -t tmpfs none /tmp -o mode=1777 mount -t tmpfs none /tmp -o mode=1777
mount -t sysfs none /sys mount -t sysfs none /sys
echo "Mounted all core filesystems. Ready to continue."

View File

@ -104,7 +104,7 @@ else
fi fi
# Create ISOLINUX configuration file. # Create ISOLINUX configuration file.
echo 'default kernel.bz initrd=rootfs.gz vga=ask' > ./isolinux.cfg echo 'default kernel.bz initrd=rootfs.gz' > ./isolinux.cfg
# Delete the '.gitignore' files which we use in order to keep track of otherwise # Delete the '.gitignore' files which we use in order to keep track of otherwise
# empty folders. # empty folders.