mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	bootfs still needs more work before it's ready. For some unknown reason model RAXE500 uses board id RAX220. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
		
			
				
	
	
		
			46 lines
		
	
	
		
			764 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			764 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
 | 
						|
 | 
						|
/dts-v1/;
 | 
						|
 | 
						|
/ {
 | 
						|
	description = "OpenWrt bootfs image";
 | 
						|
	#address-cells = <1>;
 | 
						|
 | 
						|
	images {
 | 
						|
		kernel {
 | 
						|
			description = "Linux kernel";
 | 
						|
			data = /incbin/("${kernel}");
 | 
						|
			type = "kernel";
 | 
						|
			os = "linux";
 | 
						|
			arch = "arm64";
 | 
						|
			compression = "lzma";
 | 
						|
			load = <0x80000>;
 | 
						|
			entry = <0x80000>;
 | 
						|
 | 
						|
			hash-1 {
 | 
						|
				algo = "sha256";
 | 
						|
			};
 | 
						|
		};
 | 
						|
 | 
						|
		fdt_linux_RAX220 {
 | 
						|
			description = "dtb";
 | 
						|
			data = /incbin/("${dts_dir}/broadcom/bcm4908/bcm4908-netgear-raxe500.dtb");
 | 
						|
			arch = "arm64";
 | 
						|
			type = "flat_dt";
 | 
						|
			compression = "none";
 | 
						|
 | 
						|
			hash-1 {
 | 
						|
				algo = "sha256";
 | 
						|
			};
 | 
						|
		};
 | 
						|
	};
 | 
						|
 | 
						|
	configurations {
 | 
						|
		conf_lx_RAX220 {
 | 
						|
			description = "BRCM 63xxx linux";
 | 
						|
			kernel = "kernel";
 | 
						|
			fdt = "fdt_linux_RAX220";
 | 
						|
		};
 | 
						|
	};
 | 
						|
};
 |