From owner-cvs-all Mon Sep 14 11:27:11 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA20628 for cvs-all-outgoing; Mon, 14 Sep 1998 11:27:11 -0700 (PDT) (envelope-from owner-cvs-all) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA20619; Mon, 14 Sep 1998 11:27:09 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02452; Mon, 14 Sep 1998 11:27:07 -0700 (PDT) Date: Mon, 14 Sep 1998 11:27:07 -0700 (PDT) Message-Id: <199809141827.LAA02452@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/alpha/libalpha elf_freebsd.c src/sys/boot/common Makefile.inc bootstrap.h interp.c load_aout.c module.c pnp.c src/sys/boot/i386/btx/btx Makefile src/sys/boot/i386/btx/btxldr Makefile src/sys/boot/i386/libi386 aout_freebsd.c bootinfo.c ... Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk msmith 1998/09/14 11:27:07 PDT Modified files: sys/boot/alpha/libalpha elf_freebsd.c sys/boot/common Makefile.inc bootstrap.h interp.c load_aout.c module.c pnp.c sys/boot/i386/btx/btx Makefile sys/boot/i386/btx/btxldr Makefile sys/boot/i386/libi386 aout_freebsd.c bootinfo.c i386_copy.c libi386.h sys/boot/i386/libi386/crt/bootsect bbinfo.h sys/boot/i386/loader Makefile conf.c main.c Log: Resynch with working sources before BTX integration. - Use format-independant module allocator. - Conditionalise ISA PnP support. - Simplify PnP enumerator interface. - Improve module/object searching. - Add missing depend/install targets in BTX makefiles. - Pass the kernel environment and module data in extended bootinfo fields. - Add a pointer to the end of the kernel + modules in bootinfo. - Fix parsing of old-style kernel arguments. Revision Changes Path 1.3 +3 -4 src/sys/boot/alpha/libalpha/elf_freebsd.c 1.5 +10 -2 src/sys/boot/common/Makefile.inc 1.5 +38 -15 src/sys/boot/common/bootstrap.h 1.4 +1 -3 src/sys/boot/common/interp.c 1.3 +5 -5 src/sys/boot/common/load_aout.c 1.4 +84 -30 src/sys/boot/common/module.c 1.2 +110 -51 src/sys/boot/common/pnp.c 1.2 +5 -1 src/sys/boot/i386/btx/btx/Makefile 1.2 +6 -1 src/sys/boot/i386/btx/btxldr/Makefile 1.3 +18 -13 src/sys/boot/i386/libi386/aout_freebsd.c 1.3 +16 -4 src/sys/boot/i386/libi386/bootinfo.c 1.3 +0 -2 src/sys/boot/i386/libi386/i386_copy.c 1.4 +1 -2 src/sys/boot/i386/libi386/libi386.h 1.2 +2 -2 src/sys/boot/i386/libi386/crt/bootsect/bbinfo.h 1.2 +5 -1 src/sys/boot/i386/loader/Makefile 1.2 +10 -1 src/sys/boot/i386/loader/conf.c 1.4 +2 -2 src/sys/boot/i386/loader/main.c