mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 21:44:27 -04:00 
			
		
		
		
	preinit spews out this message "cat: can't open '/proc/device-tree/model': No such file or directory" Signed-off-by: John Crispin <john@phrozen.org>
		
			
				
	
	
		
			11 lines
		
	
	
		
			376 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			376 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| do_sysinfo_generic() {
 | |
| 	[ -d /proc/device-tree ] || return
 | |
| 	mkdir -p /tmp/sysinfo
 | |
| 	[ -e /tmp/sysinfo/board_name ] || \
 | |
| 		echo "$(strings /proc/device-tree/compatible | head -1)" > /tmp/sysinfo/board_name
 | |
| 	[ -n /tmp/sysinfo/model -a -e /proc/device-tree/model ] && \
 | |
| 		echo "$(cat /proc/device-tree/model)" > /tmp/sysinfo/model
 | |
| }
 | |
| 
 | |
| boot_hook_add preinit_main do_sysinfo_generic
 |