mirror of
https://github.com/rancher/os-kernel.git
synced 2025-04-28 02:30:07 +00:00
20 lines
271 B
Bash
Executable File
20 lines
271 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
source ./scripts/version
|
|
|
|
./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
|
|
|