1 Star 0 Fork 0

LongPanda / efifs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
set_grub_cpu.sh 399 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
grub_include=`dirname $(readlink -f $0)`/grub/include/grub
shopt -s nocasematch
case "$1" in
"x64") arch=x86_64;;
"x86") arch=i386;;
"ia32") arch=i386;;
"arm") arch=arm;;
"arm64") arch=arm64;;
"aa64") arch=arm64;;
"aarch64") arch=arm64;;
*) echo "Unsupported arch"; exit 1;;
esac
rm -f $grub_include/cpu
ln -vs $grub_include/$arch $grub_include/cpu
1
https://gitee.com/longpanda/efifs.git
git@gitee.com:longpanda/efifs.git
longpanda
efifs
efifs
master

搜索帮助