diff options
author | Leah Rowe <info@minifree.org> | 2016-09-07 08:38:23 +0100 |
---|---|---|
committer | Leah Rowe <info@minifree.org> | 2016-09-07 08:38:54 +0100 |
commit | f489da2b1f76f8f09e5fc741599f36e1315f3704 (patch) | |
tree | 67a68d3f9ae70fe866c6a2a88ee4f7e39a57a53e /resources/scripts/helpers/build/roms | |
parent | 26a44d41a1ad1c08c6481ea662deb916c0d6175c (diff) | |
download | librebootfr-f489da2b1f76f8f09e5fc741599f36e1315f3704.tar.gz librebootfr-f489da2b1f76f8f09e5fc741599f36e1315f3704.zip |
build/roms/withseabios: : disable building of vesafb ROMs for d945gclf
Only txtmode works, according to avph.
Diffstat (limited to 'resources/scripts/helpers/build/roms')
-rwxr-xr-x | resources/scripts/helpers/build/roms/withseabios_helper | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/resources/scripts/helpers/build/roms/withseabios_helper b/resources/scripts/helpers/build/roms/withseabios_helper index 28cf079d..56d03d65 100755 --- a/resources/scripts/helpers/build/roms/withseabios_helper +++ b/resources/scripts/helpers/build/roms/withseabios_helper @@ -76,10 +76,9 @@ printf 'libreboot-%s\n' "${version}" > ".coreboot-version" # needed for reproduc for romtype in txtmode vesafb do - if [ "${boardtarget}" = "kgpe-d16" ] || [ "${boardtarget}" = "kcma-d8" ]; then + if [ "${boardtarget}" = "kgpe-d16" ] || [ "${boardtarget}" = "kcma-d8" ] || [ "${boardtarget}" = "d945gclf" ]; then if [ "${romtype}" = "vesafb" ]; then - printf "Only text-mode is reported to work on KGPE-D16, KCMA-D8\n" - printf "TODO: get tpearson to fix it\n" + printf "Only text-mode is reported to work on KGPE-D16, KCMA-D8, d945gclf\n" continue fi fi |