mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-05-02 04:57:15 +00:00

* Update rpi kernel 4.14.54 / Firmware / wifi Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Fix patch * Update bluetooth-bcm43xx.mk * Update bluetooth-bcm43xx.mk * Update bluetooth-bcm43xx.mk
10 lines
216 B
Bash
Executable File
10 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Need a version!"
|
|
exit 1
|
|
fi
|
|
|
|
sed -i "s/BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION=\".*\"/BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION=\"$1\"/g" buildroot-external/configs/rpi*
|