diff options
author | Leah Woods <info@minifree.org> | 2016-05-19 09:20:46 +0100 |
---|---|---|
committer | Leah Woods <info@minifree.org> | 2016-05-19 09:20:46 +0100 |
commit | a33099490113b82356bdc2a2b2339a48623fd27c (patch) | |
tree | f2f41d69bf9c7bc394c16a87efe7b507e85fb469 | |
parent | e2c06ebf4ae25ef2f95d4bc51c06a4c1c8431377 (diff) | |
download | librebootfr-a33099490113b82356bdc2a2b2339a48623fd27c.tar.gz librebootfr-a33099490113b82356bdc2a2b2339a48623fd27c.zip |
build/roms/withgrub: (buildfix) remove existing default timeout file
Also increase our timeout from 20s to 60s.
-rwxr-xr-x | resources/scripts/helpers/build/roms/withgrub_helper | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/resources/scripts/helpers/build/roms/withgrub_helper b/resources/scripts/helpers/build/roms/withgrub_helper index a34bebb6..9a20d64a 100755 --- a/resources/scripts/helpers/build/roms/withgrub_helper +++ b/resources/scripts/helpers/build/roms/withgrub_helper @@ -137,8 +137,11 @@ do # SeaVGABIOS stuff ./util/cbfstool/cbfstool "${boardtarget}_${romtype}.rom" add -f ../../../seabios/out/vgabios.bin -n vgaroms/vgabios.bin -t raw - # Add keyboard startup delay timeout. Needed on some boards. 20s, just to play it safe. - ./util/cbfstool/cbfstool "${boardtarget}_${romtype}.rom" add-int -i 20000 -n etc/ps2-keyboard-spinup + # Remove default 3000ms timeout + ./util/cbfstool/cbfstool "${boardtarget}_${romtype}.rom" remove -n etc/ps2-keyboard-spinup + + # Add keyboard startup delay timeout. Needed on some boards. 60s, just to play it safe. + ./util/cbfstool/cbfstool "${boardtarget}_${romtype}.rom" add-int -i 60000 -n etc/ps2-keyboard-spinup # .config no longer needed rm -f ".config" |