mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 03:32:12 +02:00
kernel-grub.bbclass: support /boot area within root partition
Previously, it supported the situation that /boot area with separate boot
partition:
...
menuentry "Update bzImage-3.10.10-WR6.0.0.0_standard-3.10" {
set root=(hd0,1)
linux /bzImage-3.10.10-WR6.0.0.0_standard root=/dev/sdb1 rw ip=dhcp
}
...
But didn't consider the situation that /boot within root partition:
...
menuentry "Update bzImage-3.10.10-WR6.0.0.0_standard-3.10" {
set root=(hd0,1)
linux /boot/bzImage-3.10.10-WR6.0.0.0_standard root=/dev/sdb1 rw ip=dhcp
}
...
This fix supported them both.
[YOCTO #5514]
(From OE-Core rev: 53d342db9f9995564573715f28c3e4c9c8c68bf9)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
dc80eea725
commit
943f4c161c
@@ -40,10 +40,11 @@ pkg_preinst_kernel-image_append () {
|
||||
pkg_postinst_kernel-image_prepend () {
|
||||
get_new_grub_cfg() {
|
||||
grubcfg="$1"
|
||||
old_image="$2"
|
||||
title="Update ${KERNEL_IMAGETYPE}-${KERNEL_VERSION}-${PV}"
|
||||
if [ "${grubcfg##*/}" = "grub.cfg" ]; then
|
||||
rootfs=`grep " *linux \+[^ ]\+ \+root=" $grubcfg -m 1 | \
|
||||
sed "s# *linux \+[^ ]\+ \+root=# linux /${KERNEL_IMAGETYPE}-${KERNEL_VERSION} root=#"`
|
||||
sed "s#${old_image}#${old_image%/*}/${KERNEL_IMAGETYPE}-${KERNEL_VERSION}#"`
|
||||
|
||||
echo "menuentry \"$title\" {"
|
||||
echo " set root=(hd0,1)"
|
||||
@@ -51,7 +52,7 @@ pkg_postinst_kernel-image_prepend () {
|
||||
echo "}"
|
||||
elif [ "${grubcfg##*/}" = "menu.list" ]; then
|
||||
rootfs=`grep "kernel \+[^ ]\+ \+root=" $grubcfg -m 1 | \
|
||||
sed "s#kernel \+[^ ]\+ \+root=#kernel /${KERNEL_IMAGETYPE}-${KERNEL_VERSION} root=#"`
|
||||
sed "s#${old_image}#${old_image%/*}/${KERNEL_IMAGETYPE}-${KERNEL_VERSION}#"`
|
||||
|
||||
echo "default 0"
|
||||
echo "timeout 30"
|
||||
@@ -79,9 +80,9 @@ pkg_postinst_kernel-image_prepend () {
|
||||
fi
|
||||
|
||||
# Don't update grubcfg at first install while old bzImage doesn't exist.
|
||||
if [ -f "$D/boot/$old_image" ]; then
|
||||
if [ -f "$D/boot/${old_image##*/}" ]; then
|
||||
grubcfgtmp="$grubcfg.tmp"
|
||||
get_new_grub_cfg "$grubcfg" > $grubcfgtmp
|
||||
get_new_grub_cfg "$grubcfg" "$old_image" > $grubcfgtmp
|
||||
get_old_grub_cfg "$grubcfg" >> $grubcfgtmp
|
||||
mv $grubcfgtmp $grubcfg
|
||||
echo "Caution! Update kernel may affect kernel-module!"
|
||||
|
||||
Reference in New Issue
Block a user