diff options
Diffstat (limited to 'resources')
-rwxr-xr-x | resources/scripts/helpers/build/roms/withgrub | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/resources/scripts/helpers/build/roms/withgrub b/resources/scripts/helpers/build/roms/withgrub index 3a77f828..4aa691b3 100755 --- a/resources/scripts/helpers/build/roms/withgrub +++ b/resources/scripts/helpers/build/roms/withgrub @@ -113,7 +113,11 @@ if [ -d "bin/grub/" ]; then do if [ -d "${board}_${romsize}b/" ]; then cd "${board}_${romsize}b/" - ../../../resources/utilities/ich9deblob/ich9gen + if [ -f "gm45macaddress" ]; then + ../../../resources/utilities/ich9deblob/ich9gen --macaddress $(cat gm45macaddress) + else + ../../../resources/utilities/ich9deblob/ich9gen + fi for rom in * do if [ "${board}" = "r500" ]; then |