diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-08-08 09:13:01 +0200 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@gmail.com> | 2014-08-08 13:37:30 -0300 |
commit | 5a8a8c7b104ee4acf0533bda469c56b45db2afc3 (patch) | |
tree | e754486a0ade29d779ed1dc54cfd1813c457d0cd /archiso | |
parent | 01773d2b86d9c6cb10d642c854143ef2dcc70bfc (diff) | |
download | archiso32-5a8a8c7b104ee4acf0533bda469c56b45db2afc3.tar.xz |
Reintroduce the possibility to force an architecture
Among other things, 36459f3 ([archiso] Drop aitab support, 2014-06-28)
removed the possibility to manually set a specific architecture by using
kernel parameters. This, however, is useful, e.g. when installing Arch
Linux on a device that reports itself as i586 but works fine with the
i686 flavor.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'archiso')
-rw-r--r-- | archiso/initcpio/hooks/archiso | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archiso/initcpio/hooks/archiso b/archiso/initcpio/hooks/archiso index 26bdedc..4c50566 100644 --- a/archiso/initcpio/hooks/archiso +++ b/archiso/initcpio/hooks/archiso @@ -101,7 +101,7 @@ _verify_checksum() { } run_hook() { - arch="$(uname -m)" + [[ -z "${arch}" ]] && arch="$(uname -m)" [[ -z "${cowspace_size}" ]] && cowspace_size="75%" [[ -z "${copytoram_size}" ]] && copytoram_size="75%" [[ -z "${archisobasedir}" ]] && archisobasedir="arch" |