Module Name: src Committed By: rin Date: Sat Jun 29 07:43:26 UTC 2024
Modified Files: src/sys/arch/i386/stand/lib: Makefile Removed Files: src/sys/arch/i386/stand/lib: bios_pci.S biospci.c isadma.c isadmavar.h isapnp.c isapnpvar.h libi386.h pcivar.h src/sys/arch/i386/stand/lib/test: pci_user.c Log Message: i386: stand: G/C `I386_INCLUDE_BUS`; only used by netboot To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 src/sys/arch/i386/stand/lib/Makefile cvs rdiff -u -r1.6 -r0 src/sys/arch/i386/stand/lib/bios_pci.S cvs rdiff -u -r1.5 -r0 src/sys/arch/i386/stand/lib/biospci.c \ src/sys/arch/i386/stand/lib/isapnp.c cvs rdiff -u -r1.2 -r0 src/sys/arch/i386/stand/lib/isadma.c \ src/sys/arch/i386/stand/lib/isadmavar.h cvs rdiff -u -r1.4 -r0 src/sys/arch/i386/stand/lib/isapnpvar.h \ src/sys/arch/i386/stand/lib/pcivar.h cvs rdiff -u -r1.48 -r0 src/sys/arch/i386/stand/lib/libi386.h cvs rdiff -u -r1.4 -r0 src/sys/arch/i386/stand/lib/test/pci_user.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/i386/stand/lib/Makefile diff -u src/sys/arch/i386/stand/lib/Makefile:1.50 src/sys/arch/i386/stand/lib/Makefile:1.51 --- src/sys/arch/i386/stand/lib/Makefile:1.50 Sat Jun 29 07:24:38 2024 +++ src/sys/arch/i386/stand/lib/Makefile Sat Jun 29 07:43:25 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.50 2024/06/29 07:24:38 rin Exp $ +# $NetBSD: Makefile,v 1.51 2024/06/29 07:43:25 rin Exp $ S?= ${.CURDIR}/../../../.. @@ -8,7 +8,6 @@ NOPROFILE=# defined I386_INCLUDE_DISK?= yes I386_INCLUDE_DOS?= no -I386_INCLUDE_BUS?= no I386_INCLUDE_PS2?= yes AFLAGS.realprot.S= ${${ACTIVE_CC} == "clang":?-no-integrated-as:} @@ -40,9 +39,6 @@ SRCS+= dosfile.c dos_file.S .if (${I386_INCLUDE_DISK} == "yes") || (${I386_INCLUDE_DOS} == "yes") SRCS+= diskbuf.c .endif -.if (${I386_INCLUDE_BUS} == "yes") -SRCS+= biospci.c bios_pci.S isapnp.c isadma.c -.endif .if (${I386_INCLUDE_PS2} == "yes") SRCS+= biosmca.S biosmemps2.S .endif