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>
59 lines
1.6 KiB
Makefile
59 lines
1.6 KiB
Makefile
#
|
|
# Copyright (C) 2017-2019 Tomasz Maciej Nowak <tomek_n@o2.pl>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
define Build/tegra-sdcard
|
|
rm -fR $@.boot
|
|
mkdir -p $@.boot
|
|
$(CP) $(KDIR)/$(KERNEL_NAME) $@.boot
|
|
$(if $(DEVICE_DTS),\
|
|
$(foreach dtb,$(DEVICE_DTS),$(CP) $(DTS_DIR)/$(dtb).dtb $@.boot), \
|
|
$(CP) $(DTS_DIR)/*.dtb $@.boot)
|
|
sed \
|
|
-e 's#@ROOT@#$(IMG_PART_SIGNATURE)#g' \
|
|
-e 's#@KERNEL@#$(KERNEL_NAME)#g' \
|
|
$(BOOT_SCRIPT) > $@-boot.scr
|
|
mkimage -A arm -O linux -T script -C none -a 0 -e 0 \
|
|
-n '$(DEVICE_TITLE) OpenWrt bootscript' \
|
|
-d $@-boot.scr \
|
|
$@.boot/boot.scr
|
|
|
|
SIGNATURE="$(IMG_PART_SIGNATURE)" \
|
|
$(SCRIPT_DIR)/gen_image_generic.sh \
|
|
$@ \
|
|
$(CONFIG_TARGET_KERNEL_PARTSIZE) $@.boot \
|
|
$(CONFIG_TARGET_ROOTFS_PARTSIZE) $(IMAGE_ROOTFS) \
|
|
2048
|
|
|
|
$(if $(UBOOT),dd if=$(STAGING_DIR_IMAGE)/$(UBOOT).img of=$@ bs=512 skip=1 seek=1 conv=notrunc)
|
|
endef
|
|
|
|
DEVICE_VARS += BOOT_SCRIPT UBOOT
|
|
|
|
define Device/Default
|
|
BOOT_SCRIPT := generic-bootscript
|
|
IMAGES := sdcard.img.gz
|
|
IMAGE/sdcard.img.gz := tegra-sdcard | gzip | append-metadata
|
|
KERNEL_NAME := zImage
|
|
KERNEL := kernel-bin
|
|
PROFILES := Default
|
|
SUPPORTED_DEVICES := $(subst _,$(comma),$(1))
|
|
endef
|
|
|
|
define Device/compulab_trimslice
|
|
DEVICE_VENDOR := CompuLab
|
|
DEVICE_MODEL := TrimSlice
|
|
DEVICE_DTS := tegra20-trimslice
|
|
DEVICE_PACKAGES := kmod-r8169 kmod-rt2800-usb kmod-rtc-em3027 \
|
|
kmod-usb-storage wpad-basic-wolfssl
|
|
UBOOT := trimslice-mmc
|
|
endef
|
|
TARGET_DEVICES += compulab_trimslice
|
|
|
|
$(eval $(call BuildImage))
|