From owner-freebsd-commit Sat Oct 28 06:06:23 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA11432 for freebsd-commit-outgoing; Sat, 28 Oct 1995 06:06:23 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA11415 for cvs-all-outgoing; Sat, 28 Oct 1995 06:06:20 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA11405 for cvs-sbin-outgoing; Sat, 28 Oct 1995 06:06:18 -0700 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA11396 ; Sat, 28 Oct 1995 06:06:13 -0700 Date: Sat, 28 Oct 1995 06:06:13 -0700 From: Peter Wemm Message-Id: <199510281306.GAA11396@freefall.freebsd.org> To: CVS-commiters, cvs-sbin Subject: cvs commit: src/sbin/modload modload.8 modload.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/28 06:06:12 Modified: sbin/modload modload.8 modload.c Log: Make modload calculate a reasonable default entry point name, in light of the recent changes to bsd.kmod.mk, which enforces that the entry point be _mod, unless overridden. This means that when modloading "/lkm/foo_mod.o", it'll use "foo_mod" as the default entry point (instead of xxxinit) unless you specify another via the -e option.