1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-12 18:59:50 +03:00

scripts: enable minirootfs generation on any arch

The minirootfs profile doesn't contain anything hardware-specific, so it
should always be allowed.
This commit is contained in:
J. Neuschäfer 2025-06-15 16:09:37 +00:00 committed by Natanael Copa
parent bbf0558952
commit 359c4f0584

View file

@ -20,6 +20,6 @@ profile_minirootfs() {
and minimal chroots."
image_ext=tar.gz
output_format=rootfs
arch="x86 x86_64 armhf armv7 aarch64 ppc64le s390x mips64 riscv64 loongarch64"
arch="$ARCH" # allow any arch
rootfs_apks="busybox alpine-baselayout alpine-keys alpine-release apk-tools libc-utils"
}