diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-02-08 20:18:56 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-02-08 20:18:56 (EST) |
commit | fe169cfef2bd84d3d2995f3a039282dfe83d94dd (patch) | |
tree | 03a3cf3b2a219464b27981f5afefe4a0ea7bd321 /buildrom-withgrub | |
parent | 19ee0fc13c73e98e8fbafecf4d8bfa31568c8ccc (diff) | |
download | libreboot-fe169cfef2bd84d3d2995f3a039282dfe83d94dd.zip libreboot-fe169cfef2bd84d3d2995f3a039282dfe83d94dd.tar.gz libreboot-fe169cfef2bd84d3d2995f3a039282dfe83d94dd.tar.bz2 |
New board: ThinkPad R400 support added to libreboot.
Diffstat (limited to 'buildrom-withgrub')
-rwxr-xr-x | buildrom-withgrub | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/buildrom-withgrub b/buildrom-withgrub index 093ff18..01d131e 100755 --- a/buildrom-withgrub +++ b/buildrom-withgrub @@ -50,11 +50,11 @@ fi for romtype in txtmode vesafb do - if [ "$1" = "x200_8mb" ] || [ "$1" = "x200_4mb" ] + if [ "$1" = "x200_8mb" ] || [ "$1" = "x200_4mb" ] || [ "$1" = "r400_8mb" ] || [ "$1" = "r400_4mb" ] then if [ "$romtype" = "txtmode" ] then - echo "Text mode graphics is currently broken on X200. Only framebuffer mode works." + echo "Text mode graphics is currently broken on X200 and R400. Only framebuffer mode works." continue fi fi @@ -72,7 +72,7 @@ do # Add the background image if [ "$romtype" = "vesafb" ] then - if [ "$1" = "macbook21" ] || [ "$1" = "x200_4mb" ] || [ "$1" = "x200_8mb" ] + if [ "$1" = "macbook21" ] || [ "$1" = "x200_4mb" ] || [ "$1" = "x200_8mb" ] || [ "$1" = "r400_4mb" ] || [ "$1" = "r400_8mb" ] then ./util/cbfstool/cbfstool "$1"_"$romtype".rom add -f ../resources/grub/background/gnulove.jpg -n background.jpg -t raw else |