From 3adcb4ce3875e052e8dd4596b5c010cdfe93c124 Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Fri, 19 Apr 2002 09:44:50 +0000 Subject: [PATCH] Build modules on ia64: o Make the cam, cd9660 lomac and sound modules i386 and alpha specific due to link problems (@gprel relocation when @ltoff is required). Once resolved, these can be moved back to the generic list. o Build linprocfs only on those architectures that have the linux module. o Make the sppp module i386 and alpha specific due to compile problems (pointers as switch cases). Once resolved, this can be moved back to the generic list. o Build all i386 specific modules, with the exception of those mentioned above as being moved from the generic list to the i386 list and those with dependencies on the linux module (aac) or i386 dependent (ar, apm, atspeaker, fpu, gnufpu, ibcs2, linux, ncv, nsp, netgraph, oltr, pecoff, s3, sbni, stg and vesa). o Don't build acpi as a module yet. It most be ported first. Once ported, it can be added to the ia64 list. o Don't build ipfilter yet due to compile errors (osreldate.h not found). --- sys/modules/Makefile | 47 +++++++++++++++++++++++++++++++++++--------- 1 file changed, 38 insertions(+), 9 deletions(-) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 6f937f9bec6..c1744323726 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -15,9 +15,7 @@ SUBDIR= 3dfx \ aue \ bge \ bridge \ - cam \ ccd \ - cd9660 \ coda \ cue \ dc \ @@ -49,9 +47,7 @@ SUBDIR= 3dfx \ lge \ libiconv \ libmchain \ - linprocfs \ lnc \ - lomac \ lpt \ md \ mii \ @@ -79,8 +75,6 @@ SUBDIR= 3dfx \ sk \ sn \ snp \ - sound \ - sppp \ ste \ sym \ syscons \ @@ -115,7 +109,7 @@ SUBDIR= 3dfx \ wb \ xl -.if !defined(NO_IPFILTER) +.if !defined(NO_IPFILTER) && ${MACHINE_ARCH} != "ia64" SUBDIR+=ipfilter .endif @@ -133,6 +127,8 @@ SUBDIR+=aac \ asr \ atspeaker \ bktr \ + cam \ + cd9660 \ ciss \ cm \ coff \ @@ -143,7 +139,9 @@ SUBDIR+=aac \ gnufpu \ ibcs2 \ iir \ + linprocfs \ linux \ + lomac \ ncv \ nsp \ mly \ @@ -155,7 +153,9 @@ SUBDIR+=aac \ sbni \ scsi_low \ smbfs \ + sound \ splash \ + sppp \ sr \ stg \ streams \ @@ -164,14 +164,43 @@ SUBDIR+=aac \ xe .endif +.if ${MACHINE_ARCH} == "ia64" +SUBDIR+=aic \ + arcnet \ + asr \ + bktr \ + ciss \ + cm \ + coff \ + el \ + em \ + fe \ + iir \ + mly \ + ray \ + scsi_low \ + smbfs \ + splash \ + sr \ + streams \ + wi \ + xe +.endif + .if ${MACHINE} == "pc98" SUBDIR+=pmc \ snc .endif .if ${MACHINE_ARCH} == "alpha" -SUBDIR+=linux \ - osf1 +SUBDIR+=cam \ + cd9660 \ + linprocfs \ + linux \ + lomac \ + osf1 \ + sound \ + sppp .endif .if defined(WANT_EXT2FS_MODULE)