- Updated the Alpine aports submodule to the latest commit. - Modified the build script to clone the Alpine aports repository using the stable branch for better reliability. - Refined the Archipelago profile by adding a title and description, and streamlined the list of additional packages. - Adjusted the build date in hardware configuration files for HP ProDesk and merged overlays to reflect the latest build time.
25 lines
531 B
Bash
Executable File
25 lines
531 B
Bash
Executable File
#!/bin/sh
|
|
# Alpine mkimage profile for Archipelago Bitcoin Node OS
|
|
|
|
profile_archipelago() {
|
|
profile_standard
|
|
title="Archipelago Bitcoin Node OS"
|
|
desc="A Bitcoin and sovereign computing node OS built on Alpine Linux"
|
|
profile_abbrev="arch"
|
|
arch="x86_64"
|
|
|
|
# Additional packages for Archipelago
|
|
apks="$apks
|
|
podman
|
|
crun
|
|
fuse-overlayfs
|
|
slirp4netns
|
|
openssh
|
|
nginx
|
|
"
|
|
|
|
# Kernel flavor
|
|
kernel_flavors="lts"
|
|
kernel_addons="xtables-addons"
|
|
}
|