mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-07-24 12:00:24 +00:00

* Improve kernel update scripts Use separate script for ODROID-N2 for now. Also warn if there are kernel patches with a specific kernel version number in the source tree: They typically can be just moved to the new kernel version, but one should compile check them before committing.
20 lines
645 B
Bash
Executable File
20 lines
645 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Need a commit ID!"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$2" ]; then
|
|
echo "Need a kernel version!"
|
|
exit 1
|
|
fi
|
|
|
|
defconfigs=(buildroot-external/configs/rpi*_defconfig)
|
|
sed -i "s|BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION=\"https://github.com/raspberrypi/linux/.*\"|BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION=\"https://github.com/raspberrypi/linux/archive/$1.tar.gz\"|g" "${defconfigs[@]}"
|
|
sed -i "s/| Raspberry Pi\(.*\) | .* |/| Raspberry Pi\1 | $2 |/g" Documentation/kernel.md
|
|
git commit -m "RaspberryPi: Update kernel $2 - $1" "${defconfigs[@]}" Documentation/kernel.md
|
|
|
|
./scripts/check-kernel-patches.sh
|