mirror of
https://github.com/rancher/os-kernel.git
synced 2025-06-23 20:27:05 +00:00
18 lines
245 B
Bash
Executable File
18 lines
245 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
./scripts/test-firmware
|
|
|
|
if ! ./scripts/download; then
|
|
echo "blah"
|
|
exit 1
|
|
fi
|
|
./scripts/extract
|
|
run-parts -v ./scripts/hooks
|
|
./scripts/build-kernel
|
|
./scripts/package-kernel
|
|
./scripts/build-images
|
|
|