summaryrefslogtreecommitdiff
path: root/controlBox.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-16 11:00:46 -0600
committerJeff Carr <[email protected]>2024-11-16 11:00:46 -0600
commitdf17901f47cc7ffc6cb72ad04cbc1d8a1bb83c30 (patch)
treea24becb74f90bdbfcaad79e0295ff4594aeb6555 /controlBox.go
parentfbf9f4e802fa66327b60cdae1136c549b6344b8c (diff)
fix arch 'all' examplev0.22.12
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")