Minor cleanup; no more references to LKM's.

This commit is contained in:
peter 1999-01-17 20:36:14 +00:00
parent 7fa9c0ca07
commit c2ffd97e0d
3 changed files with 5 additions and 11 deletions

View File

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: linux_sysvec.c,v 1.42 1998/12/19 19:05:57 sos Exp $
* $Id: linux_sysvec.c,v 1.43 1999/01/06 23:05:38 julian Exp $
*/
/* XXX we use functions that might not exist. */
@ -429,9 +429,6 @@ struct sysentvec elf_linux_sysvec = {
elf_coredump
};
/*
* Installed either via SYSINIT() or via LKM stubs.
*/
static Elf32_Brandinfo linux_brand = {
"Linux",
"/compat/linux",

View File

@ -28,7 +28,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: imgact_linux.c,v 1.29 1998/08/16 01:21:50 bde Exp $
* $Id: imgact_linux.c,v 1.30 1998/10/16 03:55:00 peter Exp $
*/
#include <sys/param.h>
@ -234,8 +234,8 @@ exec_linux_imgact(imgp)
/*
* Tell kern_execve.c about it, with a little help from the linker.
* Since `const' objects end up in the text segment, TEXT_SET is the
* correct directive to use. Do not staticize; used by Linux LKM.
* correct directive to use.
*/
const struct execsw linux_execsw = { exec_linux_imgact, "linux a.out" };
static const struct execsw linux_execsw = { exec_linux_imgact, "linux a.out" };
EXEC_SET(linuxaout, linux_execsw);

View File

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: linux_sysvec.c,v 1.42 1998/12/19 19:05:57 sos Exp $
* $Id: linux_sysvec.c,v 1.43 1999/01/06 23:05:38 julian Exp $
*/
/* XXX we use functions that might not exist. */
@ -429,9 +429,6 @@ struct sysentvec elf_linux_sysvec = {
elf_coredump
};
/*
* Installed either via SYSINIT() or via LKM stubs.
*/
static Elf32_Brandinfo linux_brand = {
"Linux",
"/compat/linux",