Skip to content

Commit af81c6b

Browse files
committed
Makefile: add asahi
1 parent 82ab401 commit af81c6b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
DATECODE:=$(shell date -u "+%Y%m%d")
22
SHELL=/bin/bash
33

4-
T_LIVE_ARCHS=i686 x86_64{,-musl} aarch64{,-musl}
4+
T_LIVE_ARCHS=i686 x86_64{,-musl} aarch64{,-musl} asahi{,-musl}
55

6-
T_PLATFORMS=rpi-{armv{6,7}l,aarch64}{,-musl} GCP{,-musl} pinebookpro{,-musl}
6+
T_PLATFORMS=rpi-{armv{6,7}l,aarch64}{,-musl} GCP{,-musl} pinebookpro{,-musl} asahi{,-musl}
77
T_ARCHS=i686 x86_64{,-musl} armv{6,7}l{,-musl} aarch64{,-musl}
88

99
T_SBC_IMGS=rpi-{armv{6,7}l,aarch64}{,-musl} pinebookpro{,-musl}
@@ -62,7 +62,9 @@ live-iso-all-print:
6262

6363
void-live-%.iso: mkiso.sh
6464
@[ -n "${CI}" ] && printf "::group::\x1b[32mBuilding $@...\x1b[0m\n" || true
65-
$(SUDO) ./mkiso.sh -r $(REPOSITORY) -t $* -- -P "$(LIVE_PLATFORMS)"
65+
$(if $(findstring aarch64,$*), \
66+
$(SUDO) ./mkiso.sh -r $(REPOSITORY) -t $* -- -P $(LIVE_PLATFORMS), \
67+
$(SUDO) ./mkiso.sh -r $(REPOSITORY) -t $*)
6668
@[ -n "${CI}" ] && printf '::endgroup::\n' || true
6769

6870
rootfs-all: $(ALL_ROOTFS)

0 commit comments

Comments
 (0)