diff options
Diffstat (limited to 'resources/scripts/helpers/build/roms/withgrub')
-rwxr-xr-x | resources/scripts/helpers/build/roms/withgrub | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/resources/scripts/helpers/build/roms/withgrub b/resources/scripts/helpers/build/roms/withgrub index 3ef295a9..f3d29462 100755 --- a/resources/scripts/helpers/build/roms/withgrub +++ b/resources/scripts/helpers/build/roms/withgrub @@ -91,27 +91,11 @@ do fi done -# TEMPORARY HACK: copy t400* to r500* -# (until proper R500 support is added) -if [ -d "bin/grub/" ]; then - cd "bin/grub/" - for board in "t400" - do - for romsize in "4m" "8m" - do - if [ -d "${board}_${romsize}b/" ]; then - cp -R "${board}_${romsize}b/" "r500_${romsize}b/" - fi - done - done - cd ../../ -fi - # Build the deblobbed descriptor+gbe regions for GM45/ICH9M targets. # Then put them in the ROM images. if [ -d "bin/grub/" ]; then cd "bin/grub/" - for board in "x200" "r400" "r500" "t400" "t500" + for board in "x200" "r400" "t400" "t500" do for romsize in "4m" "8m" do @@ -124,11 +108,7 @@ if [ -d "bin/grub/" ]; then fi for rom in *.rom do - if [ "${board}" = "r500" ]; then - dd if="ich9fdnogbe_${romsize}.bin" of="${rom}" bs=1 count=4k conv=notrunc - else - dd if="ich9fdgbe_${romsize}.bin" of="${rom}" bs=1 count=12k conv=notrunc - fi + dd if="ich9fdgbe_${romsize}.bin" of="${rom}" bs=1 count=12k conv=notrunc done rm -f "ich9fd"*.bin "mk"*.[ch] cd "../" |