mirror of
https://github.com/rancher/os.git
synced 2025-06-23 05:27:03 +00:00
`HOST_ARCH=arm64 ./make.sh minimal` builds vmlinuz and initrd for arm64 on arm64 (sourcing .docker-env.arm64 in the process) `ARCH=arm ./make.sh rootfs` builds rootfs.tar.gz for arm on your current docker environment
8 lines
137 B
Bash
Executable File
8 lines
137 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
|
|
cd $(dirname $0)/..
|
|
. ./scripts/dapper-common
|
|
|
|
dapper -d -O make HOST_ARCH=${HOST_ARCH} ARCH=${ARCH} DEV_BUILD=1 test
|