This change makes the names of Broadcom targets consistent by using the common notation based on SoC/CPU ID (which is used internally anyway), bcmXXXX instead of brcmXXXX. This is even used for target TITLE in make menuconfig already, only the short target name used brcm so far. Despite, since subtargets range from bcm2708 to bcm2711, it seems appropriate to use bcm27xx instead of bcm2708 (again, as already done for BOARDNAME). This also renames the packages brcm2708-userland and brcm2708-gpu-fw. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> Acked-by: Álvaro Fernández Rojas <noltari@gmail.com>
		
			
				
	
	
		
			24 lines
		
	
	
		
			718 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			718 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From bb8f38337d08dc1ac78ab251aa0b515eea45a79e Mon Sep 17 00:00:00 2001
 | |
| From: Phil Elwell <phil@raspberrypi.org>
 | |
| Date: Tue, 15 Jan 2019 09:56:41 +0000
 | |
| Subject: [PATCH] arm64: dts: broadcom: Enable fixups for overlays
 | |
| 
 | |
| See: https://github.com/raspberrypi/linux/pull/2733
 | |
| 
 | |
| Signed-off-by: Phil Elwell <phil@raspberrypi.org>
 | |
| ---
 | |
|  arch/arm64/boot/dts/broadcom/Makefile | 5 +++++
 | |
|  1 file changed, 5 insertions(+)
 | |
| 
 | |
| --- a/arch/arm64/boot/dts/broadcom/Makefile
 | |
| +++ b/arch/arm64/boot/dts/broadcom/Makefile
 | |
| @@ -9,3 +9,8 @@ dtb-$(CONFIG_ARCH_BCM2835) += bcm2710-rp
 | |
|  
 | |
|  subdir-y	+= northstar2
 | |
|  subdir-y	+= stingray
 | |
| +
 | |
| +# Enable fixups to support overlays on BCM2835 platforms
 | |
| +ifeq ($(CONFIG_ARCH_BCM2835),y)
 | |
| +	DTC_FLAGS ?= -@
 | |
| +endif
 |