e53e97ce3c
Virtual devices on Sun Logical Domains are built on top of a virtual channel framework. This, with help of hypervisor interfaces, provides a link layer protocol with basic handshaking over which virtual device clients and servers communicate. Built on top of this is a VIO device protocol which has it's own handshaking and message types. At this layer attributes are exchanged (disk size, network device addresses, etc.) descriptor rings are registered, and data transfers are triggers and replied to. Signed-off-by: David S. Miller <davem@davemloft.net>
50 lines
1.5 KiB
Makefile
50 lines
1.5 KiB
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
EXTRA_AFLAGS := -ansi
|
|
EXTRA_CFLAGS := -Werror
|
|
|
|
extra-y := head.o init_task.o vmlinux.lds
|
|
|
|
obj-y := process.o setup.o cpu.o idprom.o \
|
|
traps.o auxio.o una_asm.o sysfs.o \
|
|
irq.o ptrace.o time.o sys_sparc.o signal.o \
|
|
unaligned.o central.o pci.o starfire.o semaphore.o \
|
|
power.o sbus.o iommu_common.o sparc64_ksyms.o chmc.o \
|
|
visemul.o prom.o of_device.o hvapi.o sstate.o mdesc.o
|
|
|
|
obj-$(CONFIG_STACKTRACE) += stacktrace.o
|
|
obj-$(CONFIG_PCI) += ebus.o isa.o pci_common.o pci_iommu.o \
|
|
pci_psycho.o pci_sabre.o pci_schizo.o \
|
|
pci_sun4v.o pci_sun4v_asm.o pci_fire.o
|
|
obj-$(CONFIG_SMP) += smp.o trampoline.o
|
|
obj-$(CONFIG_SPARC32_COMPAT) += sys32.o sys_sparc32.o signal32.o
|
|
obj-$(CONFIG_BINFMT_ELF32) += binfmt_elf32.o
|
|
obj-$(CONFIG_BINFMT_AOUT32) += binfmt_aout32.o
|
|
obj-$(CONFIG_MODULES) += module.o
|
|
obj-$(CONFIG_US3_FREQ) += us3_cpufreq.o
|
|
obj-$(CONFIG_US2E_FREQ) += us2e_cpufreq.o
|
|
obj-$(CONFIG_KPROBES) += kprobes.o
|
|
obj-$(CONFIG_SUN_LDOMS) += ldc.o vio.o viohs.o
|
|
obj-$(CONFIG_AUDIT) += audit.o
|
|
obj-$(CONFIG_AUDIT)$(CONFIG_SPARC32_COMPAT) += compat_audit.o
|
|
obj-y += $(obj-yy)
|
|
|
|
ifdef CONFIG_SUNOS_EMUL
|
|
obj-y += sys_sunos32.o sunos_ioctl32.o
|
|
else
|
|
ifdef CONFIG_SOLARIS_EMUL
|
|
obj-y += sys_sunos32.o sunos_ioctl32.o
|
|
endif
|
|
endif
|
|
|
|
ifneq ($(NEW_GCC),y)
|
|
CMODEL_CFLAG := -mmedlow
|
|
else
|
|
CMODEL_CFLAG := -m64 -mcmodel=medlow
|
|
endif
|
|
|
|
head.o: head.S ttable.S itlb_miss.S dtlb_miss.S ktlb.S tsb.S \
|
|
etrap.S rtrap.S winfixup.S entry.S
|