2026-01-24 22:59:20 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
# Alpine mkimage profile for Archipelago Bitcoin Node OS
|
|
|
|
|
|
2026-01-31 19:47:52 +00:00
|
|
|
profile_archipelago() {
|
|
|
|
|
profile_standard
|
2026-01-31 20:08:28 +00:00
|
|
|
title="Archipelago Bitcoin Node OS"
|
|
|
|
|
desc="A Bitcoin and sovereign computing node OS built on Alpine Linux"
|
|
|
|
|
profile_abbrev="arch"
|
|
|
|
|
arch="x86_64"
|
2026-01-31 19:47:52 +00:00
|
|
|
|
|
|
|
|
# Additional packages for Archipelago
|
|
|
|
|
apks="$apks
|
|
|
|
|
podman
|
|
|
|
|
crun
|
|
|
|
|
fuse-overlayfs
|
|
|
|
|
slirp4netns
|
|
|
|
|
openssh
|
|
|
|
|
nginx
|
|
|
|
|
"
|
|
|
|
|
|
2026-01-31 20:08:28 +00:00
|
|
|
# Kernel flavor
|
2026-01-31 19:47:52 +00:00
|
|
|
kernel_flavors="lts"
|
2026-01-31 20:08:28 +00:00
|
|
|
kernel_addons="xtables-addons"
|
2026-01-24 22:59:20 +00:00
|
|
|
}
|