diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-03-17 16:49:45 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-03-18 00:03:08 (EDT) |
commit | ccc09ce5b6e39fed38434d9e97574d84c425bc65 (patch) | |
tree | 7dea151f3246a9f595280c18f70855e1beeae17f /resources/scripts/helpers/build/roms | |
parent | c164960b3b600a4da564b58645b776bbb5f4a016 (diff) | |
download | libreboot-ccc09ce5b6e39fed38434d9e97574d84c425bc65.zip libreboot-ccc09ce5b6e39fed38434d9e97574d84c425bc65.tar.gz libreboot-ccc09ce5b6e39fed38434d9e97574d84c425bc65.tar.bz2 |
New board: ThinkPad T400
Diffstat (limited to 'resources/scripts/helpers/build/roms')
-rwxr-xr-x | resources/scripts/helpers/build/roms/helper | 6 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/roms/withgrub | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/resources/scripts/helpers/build/roms/helper b/resources/scripts/helpers/build/roms/helper index 983be3d..8fde114 100755 --- a/resources/scripts/helpers/build/roms/helper +++ b/resources/scripts/helpers/build/roms/helper @@ -52,11 +52,11 @@ fi for romtype in txtmode vesafb do - if [ "$1" = "x200_8mb" ] || [ "$1" = "x200_4mb" ] || [ "$1" = "r400_8mb" ] || [ "$1" = "r400_4mb" ] + if [ "$1" = "x200_8mb" ] || [ "$1" = "x200_4mb" ] || [ "$1" = "r400_8mb" ] || [ "$1" = "r400_4mb" ] || [ "$1" = "t400_8mb" ] || [ "$1" = "t400_4mb" ] then if [ "$romtype" = "txtmode" ] then - echo "Text mode graphics is currently broken on X200 and R400. Only framebuffer mode works." + echo "Text mode graphics is currently broken on X200, R400 and T400. Only framebuffer mode works." continue fi fi @@ -74,7 +74,7 @@ do # Add the background image if [ "$romtype" = "vesafb" ] then - if [ "$1" = "macbook21" ] || [ "$1" = "x200_4mb" ] || [ "$1" = "x200_8mb" ] || [ "$1" = "r400_4mb" ] || [ "$1" = "r400_8mb" ] + if [ "$1" = "macbook21" ] || [ "$1" = "x200_4mb" ] || [ "$1" = "x200_8mb" ] || [ "$1" = "r400_4mb" ] || [ "$1" = "r400_8mb" ] || [ "$1" = "t400_4mb" ] || [ "$1" = "t400_8mb" ] then ./util/cbfstool/cbfstool "$1"_"$romtype".rom add -f ../resources/grub/background/gnulove.jpg -n background.jpg -t raw else diff --git a/resources/scripts/helpers/build/roms/withgrub b/resources/scripts/helpers/build/roms/withgrub index f81da2d..5a7f83c 100755 --- a/resources/scripts/helpers/build/roms/withgrub +++ b/resources/scripts/helpers/build/roms/withgrub @@ -95,7 +95,7 @@ done # Then put them in the ROM images. if [ -d bin/ ]; then cd bin/ - for board in "x200" "r400" + for board in "x200" "r400" "t400" do for romsize in "4m" "8m" do |