mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-29 13:04:27 -04:00 
			
		
		
		
	Add imx8m support: - add a cortexa53 subtarget to imx - move ARCH and KERNELNAME to subtargets - account for kernel modules that are not used for cortexa53 No device-specific targets or firmware images are created yet but all imx8m* dtbs will be built. enabling CONFIG_TARGET_ROOTFS_INITRAMFS results in openwrt-imx-cortexa53-imx8m-initramfs-kernel.bin which has been successfully booted on an imx8mm-evk using the following: u-boot=> tftpboot $fdt_addr_r image-imx8mm-evk.dtb && \ tftpboot $kernel_addr_r openwrt-imx-cortexa53-imx8m-initramfs-kernel.bin && \ booti $kernel_addr_r - $fdt_addr_r Signed-off-by: Tim Harvey <tharvey@gateworks.com>
		
			
				
	
	
		
			9 lines
		
	
	
		
			198 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			198 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| ARCH:=aarch64
 | |
| BOARDNAME:=NXP i.MX with Cortex-A53 (ARM64)
 | |
| CPU_TYPE:=cortex-a53
 | |
| KERNELNAME:=Image dtbs
 | |
| 
 | |
| define Target/Description
 | |
| 	Build firmware images for NXP i.MX (Cortex-A53) based boards.
 | |
| endef
 |