8 Star 0 Fork 48

src-anolis-os/grub2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0159-grub-switch-to-blscfg.in-Better-boot-prefix-checking.patch 2.59 KB
一键复制 编辑 原始数据 按行查看 历史
geliwei 提交于 2022-04-13 15:15 . update to grub2-2.02-120.el8.src.rpm
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Peter Jones <pjones@redhat.com>
Date: Fri, 22 Jun 2018 14:04:28 -0400
Subject: [PATCH] grub-switch-to-blscfg.in: Better boot prefix checking
Signed-off-by: Peter Jones <pjones@redhat.com>
---
util/grub-switch-to-blscfg.in | 36 +++++++++++++++++-------------------
1 file changed, 17 insertions(+), 19 deletions(-)
diff --git a/util/grub-switch-to-blscfg.in b/util/grub-switch-to-blscfg.in
index dac41e738..884cf45b1 100644
--- a/util/grub-switch-to-blscfg.in
+++ b/util/grub-switch-to-blscfg.in
@@ -219,30 +219,31 @@ EOF
}
for kernelver in $(cd /lib/modules/ ; ls -1) "" ; do
- if [ ! -d "/lib/modules/${kernelver}" ] ; then
- continue
- fi
- if [ ! -f "/boot/vmlinuz-${kernelver}" ]; then
- continue
- fi
bls_target="${blsdir}/${MACHINE_ID}-${kernelver}.conf"
+ linux="$(grep '^linux[ \t]' "${bls_target}" | sed -e 's,^linux[ \t]+,,')"
kernel_dir="/lib/modules/${kernelver}"
- if [ -f "${kernel_dir}/bls.conf" ]; then
+
+ if [ ! -d "${kernel_dir}" ] ; then
+ continue
+ fi
+ if [ ! -f "${linux_path}" ]; then
+ continue
+ fi
+
+ linux_relpath="$("${grub_mkrelpath}" "${linux}")"
+ bootprefix="${linux%%"${linux_relpath}"}"
+
+ if [ -f "${kernel_dir}/bls.conf" ] ; then
cp -af "${kernel_dir}/bls.conf" "${bls_target}"
else
mkbls "${kernelver}" \
"$(date -u +%Y%m%d%H%M%S -d "$(stat -c '%y' "${kernel_dir}")")" \
+ "${bootprefix}" \
>"${bls_target}"
fi
- linux="$(grep '^linux[ \t]' "${bls_target}" | sed -e 's,^linux[ \t]*,,')"
- initrd="$(grep '^initrd[ \t]' "${bls_target}" | sed -e 's,^initrd[ \t]*,,')"
- linux_relpath="$("${grub_mkrelpath}" /boot/$linux)"
- initrd_relpath="$("${grub_mkrelpath}" /boot/$initrd)"
-
- if [ $linux != $linux_relpath ] ; then
- sed -i -e "s,^linux.*,linux ${linux_relpath},g" "${bls_target}"
- sed -i -e "s,^initrd.*,initrd ${initrd_relpath},g" "${bls_target}"
+ if [ -n "${bootprefix}" ]; then
+ sed -i -e "s,\([ \t]\)${bootprefix},\1,g" "${bls_target}"
fi
if [ "x$GRUB_LINUX_MAKE_DEBUG" = "xtrue" ]; then
@@ -257,10 +258,7 @@ for kernelver in $(cd /lib/modules/ ; ls -1) "" ; do
fi
done
-if [ -f "/boot/vmlinuz-0-rescue-${MACHINE_ID}" ]; then
- if [ $linux != $linux_relpath ]; then
- bootprefix="$(dirname ${linux_relpath})"
- fi
+if [ -n "${bootprefix}" -a -f "/boot/vmlinuz-0-rescue-${MACHINE_ID}" ]; then
mkbls "0-rescue-${MACHINE_ID}" "0" "${bootprefix}" >"${blsdir}/${MACHINE_ID}-0-rescue.conf"
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-anolis-os/grub2.git
git@gitee.com:src-anolis-os/grub2.git
src-anolis-os
grub2
grub2
a8

搜索帮助