Both targets miss a subtarget causing an image naming style which is different from other all othe targets, even tho it already uses `x/generic/` as subfolder as if the subtarget would exist. This commit adds the Generic subtarget resulting in consistent naming. Fixes:c9e45c2("uboot-fritz4040: update PKG_MIRROR_HASH") Fixes:bb43571("uboot-fritz4040: update to latest HEAD") Signed-off-by: Paul Spooren <mail@aparcar.org> (cherry picked from commit853e4dd306)
30 lines
860 B
Makefile
30 lines
860 B
Makefile
# Copyright (c) 2013 The Linux Foundation. All rights reserved.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=arm
|
|
BOARD:=ipq806x
|
|
BOARDNAME:=Qualcomm Atheros IPQ806X
|
|
FEATURES:=squashfs nand fpu ramdisk
|
|
CPU_TYPE:=cortex-a15
|
|
CPU_SUBTYPE:=neon-vfpv4
|
|
MAINTAINER:=John Crispin <john@phrozen.org>
|
|
SUBTARGETS:=generic
|
|
|
|
KERNEL_PATCHVER:=4.14
|
|
|
|
KERNELNAME:=zImage Image dtbs
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
# TODO: 4.19 drops kmod-usb-dwc3-of-simple which is replaced by_kmod-usb-dwc3-qcom
|
|
# 4.19 also integrates kmod-usb-phy-qcom-dwc3
|
|
DEFAULT_PACKAGES += \
|
|
kmod-leds-gpio kmod-gpio-button-hotplug swconfig \
|
|
kmod-ata-core kmod-ata-ahci kmod-ata-ahci-platform \
|
|
kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-usb-ledtrig-usbport \
|
|
kmod-usb3 kmod-usb-dwc3-of-simple kmod-usb-phy-qcom-dwc3 \
|
|
kmod-ath10k-ct wpad uboot-envtools e2fsprogs autocore-arm
|
|
|
|
$(eval $(call BuildTarget))
|