22 lines
289 B
Bash
Executable File
22 lines
289 B
Bash
Executable File
#!/bin/sh
|
|
# vim: set sw=4 ts=4 sts=4 et :
|
|
|
|
set -e
|
|
|
|
. ./config
|
|
|
|
./prepare.sh
|
|
./config-portage.sh
|
|
./setup-local-repo.sh
|
|
./build.sh
|
|
./build-host-tools.sh
|
|
./build-rootfs.sh
|
|
./build-uboot.sh
|
|
./build-grub.sh
|
|
./build-kernel.sh
|
|
./build-squashfs.sh
|
|
./post-build.sh
|
|
|
|
./genimage.sh
|
|
./build-update.sh
|