Bläddra i källkod

rockchip: allow for multiple boot-scripts

Add support for select a bootscript depending on the device built. This
is necessary, as the FriendlyARM NanoPi R2S needs a different bootcmd in
order to produce output on the debug UART.

Signed-off-by: David Bauer <[email protected]>
David Bauer 5 år sedan
förälder
incheckning
b72f7c64a4
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      target/linux/rockchip/image/Makefile

+ 1 - 1
target/linux/rockchip/image/Makefile

@@ -24,7 +24,7 @@ endef
 
 define Build/boot-script
 	# Make an U-boot image and copy it to the boot partition
-	mkimage -A arm -O linux -T script -C none -a 0 -e 0 -d mmc.bootscript [email protected]/boot.scr
+	mkimage -A arm -O linux -T script -C none -a 0 -e 0 -d $(if $(1),$(1),mmc).bootscript [email protected]/boot.scr
 endef
 
 define Build/pine64-img