When support for Luma WRTQ-329ACN was added, the instructions for
flashing this device include using tools from uboot-envtools package.
Unfortunately the OpenWrt buildroot system omits packages from
DEVICE_PACKAGES when CONFIG_TARGET_MULTI_PROFILE,
CONFIG_TARGET_PER_DEVICE_ROOTFS, CONFIG_TARGET_ALL_PROFILES are set. In
result the official images are without tools mentioned in the
instruction. The workoround for the fashing would be installing
uboot-envtools when booted with initramfs image, but not always the
access to internet is available. The other method would be to issue the
necesary command in U-Boot environment but some serial terminals default
configuration don't work well with pasting lines longer than 80 chars.
Therefore add uboot-envtools to default packages, which adds really
small flash footprint to rootfs, where increased size usually is not an
issue.
Signed-off-by: Tomasz Maciej Nowak <tmn505@gmail.com>
(cherry picked from commit 1984a6bbca)
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			546 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			546 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
ARCH:=arm
 | 
						|
BOARD:=ipq40xx
 | 
						|
BOARDNAME:=Qualcomm Atheros IPQ40XX
 | 
						|
FEATURES:=squashfs fpu ramdisk nand
 | 
						|
CPU_TYPE:=cortex-a7
 | 
						|
CPU_SUBTYPE:=neon-vfpv4
 | 
						|
SUBTARGETS:=generic mikrotik
 | 
						|
 | 
						|
KERNEL_PATCHVER:=5.4
 | 
						|
KERNEL_TESTING_PATCHVER:=5.4
 | 
						|
 | 
						|
KERNELNAME:=zImage Image dtbs
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/target.mk
 | 
						|
DEFAULT_PACKAGES += \
 | 
						|
	kmod-usb-dwc3-qcom \
 | 
						|
	kmod-leds-gpio kmod-gpio-button-hotplug swconfig \
 | 
						|
	kmod-ath10k-ct wpad-basic-wolfssl \
 | 
						|
	kmod-usb3 kmod-usb-dwc3 ath10k-firmware-qca4019-ct \
 | 
						|
	uboot-envtools
 | 
						|
 | 
						|
$(eval $(call BuildTarget))
 |