rockchip: merge bootscript
The bootscript for nanopi r2s/r4s only changes the serial address, so make it auto detected in mmc bootscript rather than creating more (redudant) files. Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
This commit is contained in:
		 Tianling Shen
					Tianling Shen
				
			
				
					committed by
					
						 Hauke Mehrtens
						Hauke Mehrtens
					
				
			
			
				
	
			
			
			 Hauke Mehrtens
						Hauke Mehrtens
					
				
			
						parent
						
							1a5cb37dd3
						
					
				
				
					commit
					e35c7ab51f
				
			| @@ -11,7 +11,7 @@ define Device/firefly_roc-rk3328-cc | ||||
|   SOC := rk3328 | ||||
|   DEVICE_DTS := rockchip/rk3328-roc-cc | ||||
|   UBOOT_DEVICE_NAME := roc-cc-rk3328 | ||||
|   IMAGE/sysupgrade.img.gz := boot-common | boot-script nanopi-r2s | pine64-img | gzip | append-metadata | ||||
|   IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata | ||||
| endef | ||||
| TARGET_DEVICES += firefly_roc-rk3328-cc | ||||
|  | ||||
| @@ -20,7 +20,7 @@ define Device/friendlyarm_nanopi-r2s | ||||
|   DEVICE_MODEL := NanoPi R2S | ||||
|   SOC := rk3328 | ||||
|   UBOOT_DEVICE_NAME := nanopi-r2s-rk3328 | ||||
|   IMAGE/sysupgrade.img.gz := boot-common | boot-script nanopi-r2s | pine64-img | gzip | append-metadata | ||||
|   IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata | ||||
|   DEVICE_PACKAGES := kmod-usb-net-rtl8152 | ||||
| endef | ||||
| TARGET_DEVICES += friendlyarm_nanopi-r2s | ||||
| @@ -31,7 +31,7 @@ define Device/friendlyarm_nanopi-r4s | ||||
|   DEVICE_VARIANT := 4GB LPDDR4 | ||||
|   SOC := rk3399 | ||||
|   UBOOT_DEVICE_NAME := nanopi-r4s-rk3399 | ||||
|   IMAGE/sysupgrade.img.gz := boot-common | boot-script nanopi-r4s | pine64-img | gzip | append-metadata | ||||
|   IMAGE/sysupgrade.img.gz := boot-common | boot-script | pine64-img | gzip | append-metadata | ||||
|   DEVICE_PACKAGES := kmod-r8169 | ||||
| endef | ||||
| TARGET_DEVICES += friendlyarm_nanopi-r4s | ||||
|   | ||||
| @@ -1,6 +1,14 @@ | ||||
| part uuid mmc ${devnum}:2 uuid | ||||
|  | ||||
| setenv bootargs "console=ttyS2,1500000 console=tty1 earlycon=uart8250,mmio32,0xff1a0000 root=PARTUUID=${uuid} rw rootwait" | ||||
| if test $stdout = 'serial@fe660000' ; | ||||
| then serial_addr=',0xfe660000'; | ||||
| elif test $stdout = 'serial@ff130000' ; | ||||
| then serial_addr=',0xff130000'; | ||||
| elif test $stdout = 'serial@ff1a0000' ; | ||||
| then serial_addr=',0xff1a0000'; | ||||
| fi; | ||||
|  | ||||
| setenv bootargs "console=ttyS2,1500000 console=tty1 earlycon=uart8250,mmio32${serial_addr} swiotlb=1 root=PARTUUID=${uuid} rw rootwait"; | ||||
|  | ||||
| load mmc ${devnum}:1 ${kernel_addr_r} kernel.img | ||||
|  | ||||
|   | ||||
| @@ -1,7 +0,0 @@ | ||||
| part uuid mmc ${devnum}:2 uuid | ||||
|  | ||||
| setenv bootargs "console=ttyS2,1500000 earlycon=uart8250,mmio32,0xff130000 root=PARTUUID=${uuid} rw rootwait" | ||||
|  | ||||
| load mmc ${devnum}:1 ${kernel_addr_r} kernel.img | ||||
|  | ||||
| bootm ${kernel_addr_r} | ||||
| @@ -1,7 +0,0 @@ | ||||
| part uuid mmc ${devnum}:2 uuid | ||||
|  | ||||
| setenv bootargs "console=ttyS2,1500000 earlycon=uart8250,mmio32,0xff1a0000 root=PARTUUID=${uuid} rw rootwait" | ||||
|  | ||||
| load mmc ${devnum}:1 ${kernel_addr_r} kernel.img | ||||
|  | ||||
| bootm ${kernel_addr_r} | ||||
		Reference in New Issue
	
	Block a user