mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 03:33:59 +08:00
306f123162
We used to runtime patch the trap table for srmmu. With the removal of sun4c support this is no longer required. With the sun4c trap removed we can remove all the referenced trap handling which is sun4c specific. This also allows us to get rid of the nosun4c.c file that contained only dummy functions/data. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
20 lines
594 B
Makefile
20 lines
594 B
Makefile
# Makefile for the linux Sparc-specific parts of the memory manager.
|
|
#
|
|
|
|
asflags-y := -ansi
|
|
ccflags-y := -Werror
|
|
|
|
obj-$(CONFIG_SPARC64) += ultra.o tlb.o tsb.o gup.o
|
|
obj-y += fault_$(BITS).o
|
|
obj-y += init_$(BITS).o
|
|
obj-$(CONFIG_SPARC32) += loadmmu.o
|
|
obj-$(CONFIG_SPARC32) += extable.o btfixup.o srmmu.o iommu.o io-unit.o
|
|
obj-$(CONFIG_SPARC32) += hypersparc.o viking.o tsunami.o swift.o
|
|
obj-$(CONFIG_SPARC_LEON)+= leon_mm.o
|
|
|
|
# Only used by sparc64
|
|
obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o
|
|
|
|
# Only used by sparc32
|
|
obj-$(CONFIG_HIGHMEM) += highmem.o
|