1 Star 0 Fork 44

xiaolunfhb/cloud-kernel20230209173155140504184370944

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
generate_bls_conf.sh 722 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaolunfhb 提交于 2023-02-09 17:34 . anRel commit
#!/bin/bash
set -e
. /etc/os-release
if [ "${ID}" == "anolis" ]; then
VERSION=${VERSION%%.*}
fi
kernelver=$1 && shift
rootfs=$1 && shift
variant=$1 && shift
output="${rootfs}/lib/modules/${kernelver}/bls.conf"
date=$(date -u +%Y%m%d%H%M%S)
if [ "${variant:-5}" = "debug" ]; then
debugname=" with debugging"
debugid="-debug"
else
debugname=""
debugid=""
fi
cat >${output} <<EOF
title ISoftStone OS (${kernelver}) ${VERSION}${debugname}
version ${kernelver}${debugid}
linux ${bootprefix}/vmlinuz-${kernelver}
initrd ${bootprefix}/initramfs-${kernelver}.img
options \$kernelopts
id ${ID}-${date}-${kernelver}${debugid}
grub_users \$grub_users
grub_arg --unrestricted
grub_class kernel${variant}
EOF
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaolunfhb/cloud-kernel20230209173155140504184370944.git
git@gitee.com:xiaolunfhb/cloud-kernel20230209173155140504184370944.git
xiaolunfhb
cloud-kernel20230209173155140504184370944
cloud-kernel20230209173155140504184370944
an8-4.19

搜索帮助