14 lines
164 B
Bash
Executable File
14 lines
164 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
dir=$(dirname "$0")
|
|
echo $dir
|
|
cd $dir
|
|
./install_dependencies.sh
|
|
./build_kernel.sh
|
|
./build_filesystem.sh
|
|
./build_initramfs.sh
|
|
./build_image.sh
|
|
|
|
|
|
|