mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
Feature/multi platform (#1866)
* wip * wip * wip * wip * wip * wip * remove debian dir * lazy env and git hash * remove env and git hash on clean * don't leave project dir * use docker for native builds * start9 rust * correctly mount registry * remove systemd config * switch to /usr/bin * disable sound for now * wip * change disk list * multi-arch images * multi-arch system images * default aarch64 * edition 2021 * dynamic wifi interface name * use wifi interface from config * bugfixes * add beep based sound * wip * wip * wip * separate out raspberry pi specific files * fixes * use new initramfs always * switch journald conf to sed script * fixes * fix permissions * talking about kernel modules not scripts * fix * fix * switch to MBR * install to /usr/lib * fixes * fixes * fixes * fixes * add media config to cfg path * fixes * fixes * fixes * raspi image fixes * fix test * fix workflow * sync boot partition * gahhhhh
This commit is contained in:
2
system-images/utils/.gitignore
vendored
2
system-images/utils/.gitignore
vendored
@@ -1 +1 @@
|
||||
utils.tar
|
||||
/docker-images
|
||||
@@ -1,6 +1,15 @@
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
all: utils.tar
|
||||
all: docker-images/aarch64.tar docker-images/x86_64.tar
|
||||
|
||||
utils.tar: Dockerfile
|
||||
DOCKER_CLI_EXPERIMENTAL=enabled docker buildx build --tag start9/x_system/utils --platform=linux/arm64 -o type=docker,dest=utils.tar .
|
||||
clean:
|
||||
rm -rf docker-images
|
||||
|
||||
docker-images:
|
||||
mkdir docker-images
|
||||
|
||||
docker-images/aarch64.tar: Dockerfile docker-images
|
||||
docker buildx build --tag start9/x_system/utils --platform=linux/arm64 -o type=docker,dest=docker-images/aarch64.tar .
|
||||
|
||||
docker-images/x86_64.tar: Dockerfile docker-images
|
||||
docker buildx build --tag start9/x_system/utils --platform=linux/amd64 -o type=docker,dest=docker-images/x86_64.tar .
|
||||
Reference in New Issue
Block a user