diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-04-10 15:36:44 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-04-10 15:36:44 +0200 |
commit | cbce24b80358c0eb4968139c7695dd8eb2bb5378 (patch) | |
tree | 9fae6e7c8cddfbd675ebe8aaddfe488b3d001829 /scripts | |
parent | f9a94113d9ca3caf4c5a20b2db9d4b0af3846b2b (diff) |
try to use new grub2
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/create.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/create.sh b/scripts/create.sh index e3fb7ac45..ccfa2f8eb 100755 --- a/scripts/create.sh +++ b/scripts/create.sh @@ -152,7 +152,7 @@ else fi if (( usegrub )); then - tar -xOzf "$src" usr/share/grub-bin/core.img >"$T/core.img" + tar -xOzf "$src" usr/lib/grub/core.img >"$T/core.img" integer coreimgsz=$($statcmd "$T/core.img") if (( coreimgsz < 1024 )); then print -u2 core.img is probably too small: $coreimgsz @@ -275,7 +275,7 @@ if (( usegrub )); then ) >boot/grub/grub.cfg set -A grubfiles ngrubfiles=0 - for a in usr/lib/grub/*-pc/{*.mod,efiemu??.o,command.lst,moddep.lst,fs.lst,handler.lst,parttool.lst}; do + for a in usr/lib/grub/*-pc/{*.mod,*.lst}; do [[ -e $a ]] && grubfiles[ngrubfiles++]=$a done cp "${grubfiles[@]}" boot/grub/ |