mirror of
https://github.com/rancher/os.git
synced 2025-08-14 13:03:22 +00:00
- Use burmilla GitHub repos - Release under burmilla Docker Hub - GitHub action for create releases - Updated boot image and login banner - Use Debian as default console - Updated system-cron to v0.5.0 - Updated services to latest versions - Bump up kernel to 4.14.206 - Include burmilla/os-debianconsole:v1.9.0 to initrd
23 lines
563 B
Bash
Executable File
23 lines
563 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
version_gt() {
|
|
test "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1";
|
|
}
|
|
|
|
|
|
if [ "$KERNEL_CHECK" != "0" ]; then
|
|
echo "Host Kernel: $(uname -r)"
|
|
echo "BurmillaOS Kernel: $KERNEL_VERSION"
|
|
|
|
# if [ $(uname -r) != $KERNEL_VERSION ] && ! version_gt $(uname -r) $KERNEL_VERSION; then
|
|
# echo "Your host kernel must be greater than BurmillaOS KERNEL_VERSION"
|
|
# exit 1
|
|
# fi
|
|
fi
|
|
|
|
echo -------------------------./build-target
|
|
$(dirname $0)/build-target
|
|
echo -------------------------./build-host
|
|
$(dirname $0)/build-host
|