aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-07-25 16:58:58 +0000
committerEric Andersen <andersen@codepoet.org>2001-07-25 16:58:58 +0000
commit2835efe3dad0a198dc31afa8e011bc3a9665baf4 (patch)
tree30d21f4cff12f9a0cdc74c0ecf26ae49f5c379b5
parent1b06419e6013ce8319be2a868bc22a6e0f4d7671 (diff)
downloadbusybox-w32-2835efe3dad0a198dc31afa8e011bc3a9665baf4.tar.gz
busybox-w32-2835efe3dad0a198dc31afa8e011bc3a9665baf4.tar.bz2
busybox-w32-2835efe3dad0a198dc31afa8e011bc3a9665baf4.zip
Note that m68k is supported
-rw-r--r--README3
-rw-r--r--insmod.c9
-rw-r--r--modutils/insmod.c9
3 files changed, 14 insertions, 7 deletions
diff --git a/README b/README
index cea4a68e2..ae0215c47 100644
--- a/README
+++ b/README
@@ -36,7 +36,8 @@ Supported architectures:
36 36
37 Busybox in general will build on any architecture supported by gcc. It has 37 Busybox in general will build on any architecture supported by gcc. It has
38 a few specialized features added for __sparc__ and __alpha__. insmod 38 a few specialized features added for __sparc__ and __alpha__. insmod
39 functionality is currently limited to x86, ARM, SH3/4, powerpc, and MIPS. 39 functionality is currently limited to x86, ARM, SH3/4, powerpc, m68k,
40 and MIPS.
40 41
41Supported libcs: 42Supported libcs:
42 43
diff --git a/insmod.c b/insmod.c
index b457fa81c..6e1ffad36 100644
--- a/insmod.c
+++ b/insmod.c
@@ -1,7 +1,10 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* 2/*
3 * Mini insmod implementation for busybox 3 * Mini insmod implementation for busybox
4 * This version of insmod now supports x86, ARM, SH3/4, powerpc, and MIPS. 4 *
5 * This version of insmod supports x86, ARM, SH3/4, powerpc, m68k,
6 * and MIPS.
7 *
5 * 8 *
6 * Copyright (C) 1999,2000,2001 by Lineo, inc. 9 * Copyright (C) 1999,2000,2001 by Lineo, inc.
7 * Written by Erik Andersen <andersen@lineo.com> 10 * Written by Erik Andersen <andersen@lineo.com>
@@ -130,7 +133,7 @@
130#ifndef MODUTILS_MODULE_H 133#ifndef MODUTILS_MODULE_H
131static const int MODUTILS_MODULE_H = 1; 134static const int MODUTILS_MODULE_H = 1;
132 135
133#ident "$Id: insmod.c,v 1.68 2001/07/17 01:12:36 andersen Exp $" 136#ident "$Id: insmod.c,v 1.69 2001/07/25 16:58:58 andersen Exp $"
134 137
135/* This file contains the structures used by the 2.0 and 2.1 kernels. 138/* This file contains the structures used by the 2.0 and 2.1 kernels.
136 We do not use the kernel headers directly because we do not wish 139 We do not use the kernel headers directly because we do not wish
@@ -347,7 +350,7 @@ int delete_module(const char *);
347#ifndef MODUTILS_OBJ_H 350#ifndef MODUTILS_OBJ_H
348static const int MODUTILS_OBJ_H = 1; 351static const int MODUTILS_OBJ_H = 1;
349 352
350#ident "$Id: insmod.c,v 1.68 2001/07/17 01:12:36 andersen Exp $" 353#ident "$Id: insmod.c,v 1.69 2001/07/25 16:58:58 andersen Exp $"
351 354
352/* The relocatable object is manipulated using elfin types. */ 355/* The relocatable object is manipulated using elfin types. */
353 356
diff --git a/modutils/insmod.c b/modutils/insmod.c
index b457fa81c..6e1ffad36 100644
--- a/modutils/insmod.c
+++ b/modutils/insmod.c
@@ -1,7 +1,10 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* 2/*
3 * Mini insmod implementation for busybox 3 * Mini insmod implementation for busybox
4 * This version of insmod now supports x86, ARM, SH3/4, powerpc, and MIPS. 4 *
5 * This version of insmod supports x86, ARM, SH3/4, powerpc, m68k,
6 * and MIPS.
7 *
5 * 8 *
6 * Copyright (C) 1999,2000,2001 by Lineo, inc. 9 * Copyright (C) 1999,2000,2001 by Lineo, inc.
7 * Written by Erik Andersen <andersen@lineo.com> 10 * Written by Erik Andersen <andersen@lineo.com>
@@ -130,7 +133,7 @@
130#ifndef MODUTILS_MODULE_H 133#ifndef MODUTILS_MODULE_H
131static const int MODUTILS_MODULE_H = 1; 134static const int MODUTILS_MODULE_H = 1;
132 135
133#ident "$Id: insmod.c,v 1.68 2001/07/17 01:12:36 andersen Exp $" 136#ident "$Id: insmod.c,v 1.69 2001/07/25 16:58:58 andersen Exp $"
134 137
135/* This file contains the structures used by the 2.0 and 2.1 kernels. 138/* This file contains the structures used by the 2.0 and 2.1 kernels.
136 We do not use the kernel headers directly because we do not wish 139 We do not use the kernel headers directly because we do not wish
@@ -347,7 +350,7 @@ int delete_module(const char *);
347#ifndef MODUTILS_OBJ_H 350#ifndef MODUTILS_OBJ_H
348static const int MODUTILS_OBJ_H = 1; 351static const int MODUTILS_OBJ_H = 1;
349 352
350#ident "$Id: insmod.c,v 1.68 2001/07/17 01:12:36 andersen Exp $" 353#ident "$Id: insmod.c,v 1.69 2001/07/25 16:58:58 andersen Exp $"
351 354
352/* The relocatable object is manipulated using elfin types. */ 355/* The relocatable object is manipulated using elfin types. */
353 356