diff options
author | marcel <marcel@FreeBSD.org> | 2006-07-27 19:12:49 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2006-07-27 19:12:49 +0000 |
commit | 38fbd8938667b68e1fc0bf769fe34a65a5923ef6 (patch) | |
tree | 34fa489e09e1e2d565322a568a62f9684b7085a8 | |
parent | c606303b8ced9d8eb28b8bebcff2036dc76d143a (diff) | |
download | FreeBSD-src-38fbd8938667b68e1fc0bf769fe34a65a5923ef6.zip FreeBSD-src-38fbd8938667b68e1fc0bf769fe34a65a5923ef6.tar.gz |
Remove Alpha remnants.
-rw-r--r-- | sys/modules/Makefile | 10 | ||||
-rw-r--r-- | sys/modules/agp/Makefile | 3 | ||||
-rw-r--r-- | sys/modules/asr/Makefile | 4 | ||||
-rw-r--r-- | sys/modules/hwpmc/Makefile | 4 | ||||
-rw-r--r-- | sys/modules/osf1/Makefile | 16 |
5 files changed, 0 insertions, 37 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index fa97c21..701ba28 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -179,7 +179,6 @@ SUBDIR= ${_3dfx} \ ${_nve} \ ${_nwfs} \ ${_oltr} \ - ${_osf1} \ ${_padlock} \ patm \ ${_pccard} \ @@ -437,15 +436,6 @@ _snc= snc .endif .endif -.if ${MACHINE_ARCH} == "alpha" -_agp= agp -_ahb= ahb -_ext2fs= ext2fs -_osf1= osf1 -_sound= sound -_sppp= sppp -.endif - .if ${MACHINE_ARCH} == "amd64" _aac= aac #_acpi= acpi # doesn't work on amd64 yet as module diff --git a/sys/modules/agp/Makefile b/sys/modules/agp/Makefile index 8e2ae03..3b8b4f2 100644 --- a/sys/modules/agp/Makefile +++ b/sys/modules/agp/Makefile @@ -11,9 +11,6 @@ SRCS+= agp_i810.c agp_intel.c agp_via.c agp_sis.c agp_ali.c agp_amd.c \ .if ${MACHINE} == "i386" SRCS+= agp_amd64.c .endif -.if ${MACHINE_ARCH} == "alpha" -SRCS+= agp_amd.c -.endif .if ${MACHINE_ARCH} == "amd64" SRCS+= agp_amd64.c .endif diff --git a/sys/modules/asr/Makefile b/sys/modules/asr/Makefile index 6b76cf7..7addf52 100644 --- a/sys/modules/asr/Makefile +++ b/sys/modules/asr/Makefile @@ -7,10 +7,6 @@ SRCS= asr.c SRCS+= opt_scsi.h opt_cam.h SRCS+= device_if.h bus_if.h pci_if.h -.if ${MACHINE_ARCH} == "alpha" -CFLAGS+= -O0 -.endif - .if ${MACHINE_ARCH} == "i386" SRCS+= opt_asr.h .endif diff --git a/sys/modules/hwpmc/Makefile b/sys/modules/hwpmc/Makefile index 9d7dfde..f46f765 100644 --- a/sys/modules/hwpmc/Makefile +++ b/sys/modules/hwpmc/Makefile @@ -10,10 +10,6 @@ SRCS= hwpmc_mod.c hwpmc_logging.c vnode_if.h WARNS?= 2 -.if ${MACHINE_ARCH} == "alpha" -SRCS+= hwpmc_alpha.c -.endif - .if ${MACHINE_ARCH} == "amd64" SRCS+= hwpmc_amd.c hwpmc_piv.c hwpmc_x86.c SRCS+= device_if.h bus_if.h diff --git a/sys/modules/osf1/Makefile b/sys/modules/osf1/Makefile deleted file mode 100644 index b03350e..0000000 --- a/sys/modules/osf1/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -# $FreeBSD$ - -.PATH: ${.CURDIR}/../../alpha/osf1 - -KMOD= osf1 -SRCS= osf1_ioctl.c osf1_misc.c osf1_signal.c osf1_sysent.c \ - osf1_mount.c imgact_osf1.c osf1_sysvec.c opt_compat.h \ - opt_ddb.h opt_mac.h opt_nfs.h device_if.h bus_if.h \ - vnode_if.h - -.if !defined(KERNBUILDDIR) -opt_compat.h: - echo "#define COMPAT_43 1" > ${.TARGET} -.endif - -.include <bsd.kmod.mk> |