diff options
author | Leah Woods <info@minifree.org> | 2016-05-14 17:00:09 +0100 |
---|---|---|
committer | Leah Woods <info@minifree.org> | 2016-05-14 17:36:28 +0100 |
commit | 8b0b649bf11e1230da2b96ea3fdb82ff8caa0dc5 (patch) | |
tree | 792f0a93e74a8411406b893a344c76f04fbb7503 /build | |
parent | 6ff3d7c8e55226ca58b011d870ab993b16576479 (diff) | |
download | librebootfr-8b0b649bf11e1230da2b96ea3fdb82ff8caa0dc5.tar.gz librebootfr-8b0b649bf11e1230da2b96ea3fdb82ff8caa0dc5.zip |
Add 16MiB ROM image configs for all GM45 thinkpads
Diffstat (limited to 'build')
-rwxr-xr-x | build | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -79,13 +79,13 @@ if [ $# -gt 1 ]; then ;; all) for option in $(listoptions "${mode}"); do - "${build}"/"${mode}"/"${option}" "$@" + "${build}"/"${mode}"/"${option}" $@ done ;; *) if [ -d "${build}"/"${mode}"/ ]; then if [ -f "${build}"/"${mode}"/"${option}" ]; then - "${build}"/"${mode}"/"${option}" "$@" + "${build}"/"${mode}"/"${option}" $@ else help die "Invalid option for '${mode}'. See './build ${mode} list'." |