mirror of
https://github.com/rancher/os.git
synced 2025-05-31 02:46:00 +00:00
13 lines
262 B
Bash
Executable File
13 lines
262 B
Bash
Executable File
#!/bin/bash
|
|
# help: For development, creates iso, kernel, initrd gzip compressed
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
echo ------------------------ ./build
|
|
./build
|
|
echo ------------------------ ./prepare
|
|
./prepare
|
|
echo ------------------------ ./package
|
|
ROOTFS=0 ./package
|