a14f5bb4bd
In order to support SAE/WPA3-Personal in default images. Replace almost all occurencies of wpad-basic and wpad-mini with wpad-basic-wolfssl for consistency. Keep out ar71xx from the list as it won't be in the next release and would only make backports harder. Build-tested (build-bot settings): ath79: generic, ramips: mt7620/mt76x8/rt305x, lantiq: xrx200/xway, sunxi: a53 Signed-off-by: Petr Štetiar <ynezz@true.cz> [rebase, extend commit message] Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
25 lines
936 B
Makefile
25 lines
936 B
Makefile
define Build/hdd-img
|
|
./mbl_gen_hdd_img.sh $@ $@.boot $(IMAGE_ROOTFS) $(CONFIG_TARGET_KERNEL_PARTSIZE) $(CONFIG_TARGET_ROOTFS_PARTSIZE)
|
|
endef
|
|
|
|
|
|
define Device/wd_mybooklive
|
|
DEVICE_VENDOR := Western Digital
|
|
DEVICE_MODEL := My Book Live Series (Single + Duo)
|
|
DEVICE_PACKAGES := kmod-usb-dwc2 kmod-usb-ledtrig-usbport kmod-usb-storage kmod-fs-vfat wpad-basic-wolfssl
|
|
SUPPORTED_DEVICES += mbl wd,mybooklive-duo
|
|
BLOCKSIZE := 1k
|
|
DTB_SIZE := 16384
|
|
KERNEL := kernel-bin | dtb | gzip | uImage gzip
|
|
KERNEL_INITRAMFS := kernel-bin | gzip | dtb | MuImage-initramfs gzip
|
|
IMAGES := factory.img.gz sysupgrade.img.gz
|
|
ARTIFACTS := apollo3g.dtb
|
|
DEVICE_DTB := apollo3g.dtb
|
|
FILESYSTEMS := ext4 squashfs
|
|
IMAGE/factory.img.gz := boot-script | boot-img | hdd-img | gzip
|
|
IMAGE/sysupgrade.img.gz := boot-script | boot-img | hdd-img | gzip | append-metadata
|
|
ARTIFACT/apollo3g.dtb := export-dtb
|
|
endef
|
|
|
|
TARGET_DEVICES += wd_mybooklive
|