diff options
Diffstat (limited to 'resources/scripts/helpers')
-rwxr-xr-x | resources/scripts/helpers/build/roms/withgrub | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/scripts/helpers/build/roms/withgrub b/resources/scripts/helpers/build/roms/withgrub index 92bcdb1c..61401d84 100755 --- a/resources/scripts/helpers/build/roms/withgrub +++ b/resources/scripts/helpers/build/roms/withgrub @@ -79,15 +79,15 @@ done # This enables the ROM to be flashed over the lenovo bios firmware for i945board in "x60" "t60" do - if [ -d "bin/${i945board}/" ]; then - cd "bin/${i945board}/" + if [ -d "bin/grub/${i945board}/" ]; then + cd "bin/grub/${i945board}/" for i945rom in $(ls) do dd if="${i945rom}" of=top64k.bin bs=1 skip=$[$(stat -c %s "${i945rom}") - 0x10000] count=64k dd if=top64k.bin of="${i945rom}" bs=1 seek=$[$(stat -c %s "${i945rom}") - 0x20000] count=64k conv=notrunc rm -f top64k.bin done - cd "../../" + cd "../../../" fi done |