diff options
author | Carlo Landmeter <clandmeter@alpinelinux.org> | 2019-02-15 10:33:10 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@alpinelinux.org> | 2019-02-15 10:33:47 +0000 |
commit | 680b40d3d2eebb2a9e83a6d3926f45a2daa58074 (patch) | |
tree | 8620d5e3409b40b43fe85b20ee86926852dd0c1f /scripts | |
parent | 0ebad5b5786a4ed06a01da23652908033b18252b (diff) | |
download | aports-680b40d3d2eebb2a9e83a6d3926f45a2daa58074.tar.bz2 aports-680b40d3d2eebb2a9e83a6d3926f45a2daa58074.tar.xz |
scripts: add modloopfw support
this is needed for firware which is not automatically detected.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/mkimg.arm.sh | 1 | ||||
-rwxr-xr-x | scripts/mkimg.base.sh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/scripts/mkimg.arm.sh b/scripts/mkimg.arm.sh index 81b2a129b4..76956d5281 100755 --- a/scripts/mkimg.arm.sh +++ b/scripts/mkimg.arm.sh @@ -75,6 +75,7 @@ profile_rpi() { kernel_cmdline="dwc_otg.lpm_enable=0 console=tty1" initfs_features="base bootchart squashfs ext4 f2fs kms mmc raid scsi usb" hostname="rpi" + modloopfw="brcm/brcmfmac43455-sdio.clm_blob" } build_uboot() { diff --git a/scripts/mkimg.base.sh b/scripts/mkimg.base.sh index aed90749d5..642eebf5ed 100755 --- a/scripts/mkimg.base.sh +++ b/scripts/mkimg.base.sh @@ -12,6 +12,7 @@ build_kernel() { --arch "$ARCH" \ --package "$_pkgs" \ --feature "$initfs_features" \ + --modloopfw "$modloopfw" \ --repositories-file "$APKROOT/etc/apk/repositories" \ "$DESTDIR" } |