2007-05-05 Robert Millan <rmh@aybabtu.com>
* util/grub.d/10_linux.in: Allow the administrator to insert Linux command-line arguments via ${GRUB_CMDLINE_LINUX}.
This commit is contained in:
parent
20b976586e
commit
c48f23ef4b
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-05-05 Robert Millan <rmh@aybabtu.com>
|
||||
|
||||
* util/grub.d/10_linux.in: Allow the administrator to insert Linux
|
||||
command-line arguments via ${GRUB_CMDLINE_LINUX}.
|
||||
|
||||
2007-05-05 Robert Millan <rmh@aybabtu.com>
|
||||
|
||||
* conf/i386-pc.rmk (grub_setup_SOURCES): Add partmap/gpt.c.
|
||||
|
|
|
@ -33,7 +33,7 @@ for linux in /boot/vmlinu[xz]-* /vmlinu[xz]-* ; do
|
|||
basedir=`echo $linux | sed -e "s,/[^/]*$,,g"`
|
||||
cat << EOF
|
||||
menuentry "${OS}, linux ${version}" {
|
||||
linux ${linux} root=${GRUB_DEVICE} ro
|
||||
linux ${linux} root=${GRUB_DEVICE} ro ${GRUB_CMDLINE_LINUX}
|
||||
EOF
|
||||
if test -e ${basedir}/initrd.img-${version} ; then
|
||||
echo "Found initrd image: ${basedir}/initrd.img-${version}" >&2
|
||||
|
@ -46,7 +46,7 @@ EOF
|
|||
EOF
|
||||
cat << EOF
|
||||
menuentry "${OS}, linux ${version} (single-user mode)" {
|
||||
linux ${linux} root=${GRUB_DEVICE} ro single
|
||||
linux ${linux} root=${GRUB_DEVICE} ro single ${GRUB_CMDLINE_LINUX}
|
||||
EOF
|
||||
if test -e ${basedir}/initrd.img-${version} ; then
|
||||
cat << EOF
|
||||
|
|
Loading…
Reference in a new issue