Skip to content

Commit

Permalink
feat: add Turing RK1 SoM to SBCs dropdown
Browse files Browse the repository at this point in the history
This has hardcoded "turingrk1" strings as discussed in
siderolabs/talos#9869

Signed-off-by: Nico Berlee <[email protected]>
  • Loading branch information
nberlee committed Dec 3, 2024
1 parent 377b550 commit 9659f46
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,14 @@ var installationMedia = []installationMediaSpec{
SBC: true,
ContentType: "application/x-xz",
},
{
Name: "Turing RK1",
Architecture: arm64Arch,
Profile: "turingrk1",
Type: rawType,
SBC: true,
ContentType: "application/x-xz",
},
}

// InstallationMediaController manages omni.InstallationMedia.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ func GetOverlay(board string) *schematic.Overlay {
Name: "rpi_generic",
Image: "siderolabs/sbc-raspberrypi",
}
case "turingrk1":
return &schematic.Overlay{
Name: "turingrk1",
Image: "siderolabs/sbc-rockchip",
}
}

return nil
Expand Down

0 comments on commit 9659f46

Please sign in to comment.