diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2023-09-05 20:24:07 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2023-09-05 20:24:07 -0500 |
commit | 2fe8d9c80e2b1297f90a53c01900c0415d8ef622 (patch) | |
tree | 2f9ed14947d495d2f9eaa583737bacdc4d2e8b78 /ui | |
parent | 3786744d944fe983871123f9f89427b67be6a82a (diff) | |
download | horizon-2fe8d9c80e2b1297f90a53c01900c0415d8ef622.tar.gz horizon-2fe8d9c80e2b1297f90a53c01900c0415d8ef622.tar.bz2 horizon-2fe8d9c80e2b1297f90a53c01900c0415d8ef622.tar.xz horizon-2fe8d9c80e2b1297f90a53c01900c0415d8ef622.zip |
Qt UI: Add MIPS lines back to keygen
Otherwise, we error out building from missing those cases.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/qt5/horizonwizard.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ui/qt5/horizonwizard.cc b/ui/qt5/horizonwizard.cc index 524b70f..264ecc8 100644 --- a/ui/qt5/horizonwizard.cc +++ b/ui/qt5/horizonwizard.cc @@ -579,6 +579,19 @@ QString HorizonWizard::toHScript() { lines << "signingkey https://distfiles.adelielinux.org/adelie/keys/x86_64/x86_64-1@packages.adelielinux.org.pub"; lines << "signingkey https://distfiles.adelielinux.org/adelie/keys/x86_64/x86_64-2@packages.adelielinux.org.pub"; break; + case mips64: + lines << "arch mips64"; + /* XXX: MIPS signing keys are needed before we ship anything. */ + break; + case mips: + lines << "arch mips"; + break; + case mips64el: + lines << "arch mips64el"; + break; + case mipsel: + lines << "arch mipsel"; + break; case UnknownCPU: /* no arch line. hopefully it's run on the target. */ break; |