diff options
Diffstat (limited to 'arch/alpha/kernel/Makefile')
-rw-r--r-- | arch/alpha/kernel/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/arch/alpha/kernel/Makefile b/arch/alpha/kernel/Makefile index 68a130f4e..4032c8c0e 100644 --- a/arch/alpha/kernel/Makefile +++ b/arch/alpha/kernel/Makefile @@ -23,11 +23,11 @@ OX_OBJS := alpha_ksyms.o ifdef CONFIG_ALPHA_GENERIC O_OBJS += core_apecs.o core_cia.o core_lca.o core_mcpcia.o core_pyxis.o \ - core_t2.o core_tsunami.o \ + core_t2.o core_tsunami.o core_polaris.o \ sys_alcor.o sys_cabriolet.o sys_dp264.o sys_eb64p.o \ sys_jensen.o sys_miata.o sys_mikasa.o sys_noritake.o \ sys_rawhide.o sys_ruffian.o sys_sable.o sys_sio.o \ - sys_sx164.o sys_takara.o \ + sys_sx164.o sys_takara.o sys_rx164.o \ es1888.o smc37c669.o smc37c93x.o else @@ -53,6 +53,9 @@ endif ifdef CONFIG_ALPHA_TSUNAMI O_OBJS += core_tsunami.o endif +ifdef CONFIG_ALPHA_POLARIS +O_OBJS += core_polaris.o +endif # Board support ifneq ($(CONFIG_ALPHA_ALCOR)$(CONFIG_ALPHA_XLT),) @@ -85,6 +88,9 @@ endif ifdef CONFIG_ALPHA_RUFFIAN O_OBJS += sys_ruffian.o endif +ifdef CONFIG_ALPHA_RX164 +O_OBJS += sys_rx164.o +endif ifdef CONFIG_ALPHA_SABLE O_OBJS += sys_sable.o endif @@ -111,7 +117,7 @@ endif endif # GENERIC -ifdef SMP +ifdef CONFIG_SMP O_OBJS += smp.o endif |