124 lines
3.8 KiB
Diff
124 lines
3.8 KiB
Diff
From ae22f8322d2f2dccd19003fccd390fe19f7126c1 Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@redhat.com>
|
|
Date: Mon, 26 Oct 2015 14:22:39 -0400
|
|
Subject: [PATCH 19/55] Always do the "rungrubby --debug" after the normal
|
|
kernel on install.
|
|
|
|
This way the during an update, the right kernel is picked as "default"
|
|
for the command line arguments.
|
|
|
|
Related: rhbz#1212128
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
---
|
|
new-kernel-pkg | 20 ++++++++++----------
|
|
1 file changed, 10 insertions(+), 10 deletions(-)
|
|
|
|
diff --git a/new-kernel-pkg b/new-kernel-pkg
|
|
index 9f56c470b4a..9574dbbf10b 100755
|
|
--- a/new-kernel-pkg
|
|
+++ b/new-kernel-pkg
|
|
@@ -243,8 +243,8 @@ install() {
|
|
--args=\"root=$rootdevice $kernargs \$debugargs\" \
|
|
--remove-kernel=\"TITLE=$title\$debugtitle\""
|
|
|
|
- rungrubby --debug ${ARGS}
|
|
rungrubby ${ARGS} $makedefault
|
|
+ rungrubby --debug ${ARGS}
|
|
else
|
|
[ -n "$verbose" ] && echo "$grubConfig does not exist, not running grubby for grub 0.97"
|
|
fi
|
|
@@ -257,8 +257,8 @@ install() {
|
|
${mbargs:+--mbargs=\"$mbargs\"} \
|
|
--args=\"root=$rootdevice $kernargs \$debugargs\" \
|
|
--remove-kernel=\"TITLE=$title\$debugtitle\""
|
|
- rungrubby --debug ${ARGS}
|
|
rungrubby ${ARGS} $makedefault
|
|
+ rungrubby --debug ${ARGS}
|
|
else
|
|
[ -n "$verbose" ] && echo "$grub2Config does not exist, not running grubby for grub 2"
|
|
fi
|
|
@@ -272,8 +272,8 @@ install() {
|
|
${mbargs:+--mbargs=\"$mbargs\"} \
|
|
--args=\"root=$rootdevice $kernargs \$debugargs\" \
|
|
--remove-kernel=\"TITLE=$title\$debugtitle\""
|
|
- rungrubby --debug ${ARGS}
|
|
rungrubby ${ARGS} $makedefault
|
|
+ rungrubby --debug ${ARGS}
|
|
else
|
|
[ -n "$verbose" ] && echo "$grub2EfiConfig does not exist, not running grubby for grub 2 with UEFI"
|
|
fi
|
|
@@ -288,8 +288,8 @@ install() {
|
|
--args=\"root=$rootdevice $kernargs \$debugargs\" \
|
|
--remove-kernel=\"TITLE=$version\""
|
|
|
|
- rungrubby --debug ${ARGS}
|
|
rungrubby ${ARGS} $makedefault
|
|
+ rungrubby --debug ${ARGS}
|
|
if [ -n "$runLilo" ]; then
|
|
[ -n "$verbose" ] && echo "running $lilo"
|
|
if [ ! -x $lilo ] ; then
|
|
@@ -313,8 +313,8 @@ install() {
|
|
--args=\"root=$rootdevice $kernargs \$debugargs\" \
|
|
--remove-kernel=\"TITLE=$title\$debugtitle\""
|
|
|
|
- rungrubby --debug ${ARGS}
|
|
rungrubby ${ARGS} $makedefault
|
|
+ rungrubby --debug ${ARGS}
|
|
else
|
|
[ -n "$verbose" ] && echo "$extlinuxConfig does not exist, not running grubby for extlinux"
|
|
fi
|
|
@@ -480,8 +480,8 @@ update() {
|
|
${mbkernel:+--add-multiboot=\"$mbkernel\"} \
|
|
--title=\"$title\$debugtitle\""
|
|
|
|
- rungrubby --debug ${ARGS}
|
|
rungrubby ${ARGS}
|
|
+ rungrubby --debug ${ARGS}
|
|
else
|
|
[ -n "$verbose" ] && echo "$grubConfig does not exist, not running grubby"
|
|
fi
|
|
@@ -493,8 +493,8 @@ update() {
|
|
${removeargs:+--remove-args=\"$removeargs\"} \
|
|
--title=\"$title\$debugtitle\""
|
|
|
|
- rungrubby --debug ${ARGS}
|
|
rungrubby ${ARGS}
|
|
+ rungrubby --debug ${ARGS}
|
|
else
|
|
[ -n "$verbose" ] && echo "$grub2Config does not exist, not running grubby"
|
|
fi
|
|
@@ -506,8 +506,8 @@ update() {
|
|
${removeargs:+--remove-args=\"$removeargs\"} \
|
|
--title=\"$title\$debugtitle\""
|
|
|
|
- rungrubby --debug ${ARGS}
|
|
rungrubby ${ARGS}
|
|
+ rungrubby --debug ${ARGS}
|
|
else
|
|
[ -n "$verbose" ] && echo "$grub2EfiConfig does not exist, not running grubby"
|
|
fi
|
|
@@ -519,8 +519,8 @@ update() {
|
|
${removeargs:+--remove-args=\"$removeargs\"} \
|
|
--title=\"$title\$debugtitle\""
|
|
|
|
- rungrubby --debug ${ARGS}
|
|
rungrubby ${ARGS}
|
|
+ rungrubby --debug ${ARGS}
|
|
|
|
if [ -n "$runLilo" ]; then
|
|
[ -n "$verbose" ] && echo "running $lilo"
|
|
@@ -571,8 +571,8 @@ update() {
|
|
${removeargs:+--remove-args=\"$removeargs\"} \
|
|
--title=\"$title\$debugtitle\""
|
|
|
|
- rungrubby --debug ${ARGS}
|
|
rungrubby ${ARGS}
|
|
+ rungrubby --debug ${ARGS}
|
|
else
|
|
[ -n "$verbose" ] && echo "$extlinuxConfig does not exist, not running grubby"
|
|
fi
|
|
--
|
|
2.17.1
|
|
|