mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 00:52:01 +00:00
3d1f9dda48
Fixes the following randconfig build problem: arch/mips/built-in.o: In function `show_cpuinfo': proc.c:(.text+0xde84): undefined reference to `get_system_type' arch/mips/built-in.o: In function `sb1250_setup': (.init.text+0x428): undefined reference to `get_system_type' arch/mips/built-in.o: In function `setup_arch': (.init.text+0x178c): undefined reference to `plat_mem_setup' Makefile:930: recipe for target 'vmlinux' failed Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/8106/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
29 lines
865 B
Makefile
29 lines
865 B
Makefile
#
|
|
# Sibyte SB1250 / BCM1480 family of SOCs
|
|
#
|
|
obj-$(CONFIG_SIBYTE_BCM112X) += sb1250/
|
|
obj-$(CONFIG_SIBYTE_BCM112X) += common/
|
|
obj-$(CONFIG_SIBYTE_SB1250) += sb1250/
|
|
obj-$(CONFIG_SIBYTE_SB1250) += common/
|
|
obj-$(CONFIG_SIBYTE_BCM1x55) += bcm1480/
|
|
obj-$(CONFIG_SIBYTE_BCM1x55) += common/
|
|
obj-$(CONFIG_SIBYTE_BCM1x80) += bcm1480/
|
|
obj-$(CONFIG_SIBYTE_BCM1x80) += common/
|
|
|
|
#
|
|
# Sibyte BCM91120x (Carmel) board
|
|
# Sibyte BCM91120C (CRhine) board
|
|
# Sibyte BCM91125C (CRhone) board
|
|
# Sibyte BCM91125E (Rhone) board
|
|
# Sibyte SWARM board
|
|
# Sibyte BCM91x80 (BigSur) board
|
|
#
|
|
obj-$(CONFIG_SIBYTE_CARMEL) += swarm/
|
|
obj-$(CONFIG_SIBYTE_CRHINE) += swarm/
|
|
obj-$(CONFIG_SIBYTE_CRHONE) += swarm/
|
|
obj-$(CONFIG_SIBYTE_RHONE) += swarm/
|
|
obj-$(CONFIG_SIBYTE_SENTOSA) += swarm/
|
|
obj-$(CONFIG_SIBYTE_SWARM) += swarm/
|
|
obj-$(CONFIG_SIBYTE_BIGSUR) += swarm/
|
|
obj-$(CONFIG_SIBYTE_LITTLESUR) += swarm/
|