From fa5e921ccbf6360ac44d51aa0c8b832800b4b120 Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Thu, 1 Aug 2019 07:09:34 +0000 Subject: [PATCH] partresize: add copy of broadcom firmware settings for nanopi-r1 I added this to partresize like the APU scon enable because this is the only script that runs on flashimage at first boot only and remount root writeable. Signed-off-by: Arne Fitzenreiter --- src/initscripts/system/partresize | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/initscripts/system/partresize b/src/initscripts/system/partresize index 0c2866c0b9..f3d8dfe20e 100644 --- a/src/initscripts/system/partresize +++ b/src/initscripts/system/partresize @@ -3,6 +3,8 @@ # Begin $rc_base/init.d/partresize # # Description : Resize the root partition to the drivesize +# and setup some platform or hardware options in +# flashimage # # Authors : Arne Fitzenreiter - arne_f@ipfire.org # @@ -46,6 +48,14 @@ case "${1}" in scon="on" fi + # Install AP6112 wlan config on NanoPi R1 + case "$(< /proc/device-tree/model )" in + "FriendlyElec NanoPi-R1") + cp -f /lib/firmware/brcm/brcmfmac43430-sdio.AP6212.txt \ + /lib/firmware/brcm/brcmfmac43430-sdio.txt + ;; + esac 2>/dev/null + mount /boot > /dev/null if [ -e /boot/grub/grub.cfg ]; then # swtich permanent to serial console if it was selected on first boot -- 2.39.5