summaryrefslogtreecommitdiff
path: root/controlBox.go
diff options
context:
space:
mode:
Diffstat (limited to 'controlBox.go')
-rw-r--r--controlBox.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/controlBox.go b/controlBox.go
index e16b131..5f0b118 100644
--- a/controlBox.go
+++ b/controlBox.go
@@ -48,12 +48,12 @@ func newControl(parent *gui.Node) *controlBox {
c.grid.NextRow()
c.Architecture = gadgets.NewBasicDropdown(c.grid, "Architecture")
- c.Architecture.AddText("riscv")
+ c.Architecture.AddText("all")
+ c.Architecture.AddText("riscv64")
+ c.Architecture.AddText("ppc64")
c.Architecture.AddText("amd64")
- c.Architecture.AddText("arm")
- c.Architecture.AddText("noarch")
- c.Architecture.AddText("src")
- c.Architecture.SetText("amd64")
+ c.Architecture.AddText("arm64")
+ c.Architecture.SetText("riscv64")
c.grid.NextRow()
c.InstallPath = gadgets.NewBasicCombobox(c.grid, "Install Path")