summaryrefslogtreecommitdiff
path: root/sys/arch/amd64/stand
diff options
context:
space:
mode:
authorTom Cosgrove <tom@cvs.openbsd.org>2007-05-30 01:25:44 +0000
committerTom Cosgrove <tom@cvs.openbsd.org>2007-05-30 01:25:44 +0000
commit5733e3038b656fdd42285e950ba6520ce83284fc (patch)
tree9e6ad85f0cacfb6e26742c59a81b6ebf9ffc18b8 /sys/arch/amd64/stand
parente89308fca5f883deb95669dc7abfdc1ebadc00e4 (diff)
Pull out the ELF loadfile pieces from the standalone libraries, so that
both 32- and 64-bit versions can be created (previously only one or the other could be built for a given boot loader). Use this to allow the i386 and amd64 boot blocks to boot both ELF32 and ELF64 kernels (i.e. amd64 boot blocks can now load i386 kernels, and vice versa). Obviously the system must support LONG mode in order to successfully run the amd64 kernel once it is loaded. Advice and discussions from/with dale@ (going back three years). Much testing nick@ and todd@; thanks.
Diffstat (limited to 'sys/arch/amd64/stand')
-rw-r--r--sys/arch/amd64/stand/boot/Makefile5
-rw-r--r--sys/arch/amd64/stand/boot/conf.c5
-rw-r--r--sys/arch/amd64/stand/cdboot/Makefile5
-rw-r--r--sys/arch/amd64/stand/cdboot/conf.c4
-rw-r--r--sys/arch/amd64/stand/libsa/elf32.c32
-rw-r--r--sys/arch/amd64/stand/libsa/elf64.c32
-rw-r--r--sys/arch/amd64/stand/pxeboot/Makefile5
-rw-r--r--sys/arch/amd64/stand/pxeboot/conf.c5
8 files changed, 79 insertions, 14 deletions
diff --git a/sys/arch/amd64/stand/boot/Makefile b/sys/arch/amd64/stand/boot/Makefile
index 43519da62fb..5bbae80bbe7 100644
--- a/sys/arch/amd64/stand/boot/Makefile
+++ b/sys/arch/amd64/stand/boot/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.6 2006/10/30 18:28:57 jmc Exp $
+# $OpenBSD: Makefile,v 1.7 2007/05/30 01:25:43 tom Exp $
.include "${.CURDIR}/../Makefile.inc"
@@ -33,7 +33,8 @@ SRCS+= alloc.c exit.c getfile.c gets.c globals.c strcmp.c strlen.c \
strerror.c strncpy.c strtol.c strtoll.c ctime.c strlcpy.c strlcat.c
# io routines
SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c fstat.c ioctl.c lseek.c \
- open.c read.c stat.c write.c cread.c readdir.c cons.c loadfile.c
+ open.c read.c stat.c write.c cread.c readdir.c cons.c loadfile.c \
+ elf32.c elf64.c
# boot filesystems
SRCS+= ufs.c
# gcc support
diff --git a/sys/arch/amd64/stand/boot/conf.c b/sys/arch/amd64/stand/boot/conf.c
index c7af2054447..145f7b4d705 100644
--- a/sys/arch/amd64/stand/boot/conf.c
+++ b/sys/arch/amd64/stand/boot/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.11 2007/04/28 19:23:10 deraadt Exp $ */
+/* $OpenBSD: conf.c,v 1.12 2007/05/30 01:25:43 tom Exp $ */
/*
* Copyright (c) 1996 Michael Shalayeff
@@ -24,7 +24,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
*/
#include <sys/types.h>
@@ -42,7 +41,7 @@
#include <biosdev.h>
#include <dev/cons.h>
-const char version[] = "2.15";
+const char version[] = "3.00";
int debug = 1;
diff --git a/sys/arch/amd64/stand/cdboot/Makefile b/sys/arch/amd64/stand/cdboot/Makefile
index 98f06fdb5bc..21469c17ed6 100644
--- a/sys/arch/amd64/stand/cdboot/Makefile
+++ b/sys/arch/amd64/stand/cdboot/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.9 2007/05/29 08:16:54 deraadt Exp $
+# $OpenBSD: Makefile,v 1.10 2007/05/30 01:25:43 tom Exp $
.include "${.CURDIR}/../Makefile.inc"
@@ -35,7 +35,8 @@ SRCS+= alloc.c exit.c strcmp.c strlen.c \
# io routines
# not required: ioctl.c write.c
SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c fstat.c lseek.c \
- open.c read.c stat.c cread.c readdir.c cons.c loadfile.c
+ open.c read.c stat.c cread.c readdir.c cons.c loadfile.c \
+ elf32.c elf64.c
# boot filesystems
SRCS+= ufs.c cd9660.c
# gcc support
diff --git a/sys/arch/amd64/stand/cdboot/conf.c b/sys/arch/amd64/stand/cdboot/conf.c
index 0bddf2cb83e..7172579a38d 100644
--- a/sys/arch/amd64/stand/cdboot/conf.c
+++ b/sys/arch/amd64/stand/cdboot/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.11 2007/05/27 18:38:33 tom Exp $ */
+/* $OpenBSD: conf.c,v 1.12 2007/05/30 01:25:43 tom Exp $ */
/*
* Copyright (c) 2004 Tom Cosgrove
@@ -42,7 +42,7 @@
#include <biosdev.h>
#include <dev/cons.h>
-const char version[] = "1.10";
+const char version[] = "2.00";
int debug = 1;
diff --git a/sys/arch/amd64/stand/libsa/elf32.c b/sys/arch/amd64/stand/libsa/elf32.c
new file mode 100644
index 00000000000..f943067411c
--- /dev/null
+++ b/sys/arch/amd64/stand/libsa/elf32.c
@@ -0,0 +1,32 @@
+/* $OpenBSD: elf32.c,v 1.1 2007/05/30 01:25:43 tom Exp $ */
+
+/*
+ * Copyright (c) 2007 Tom Cosgrove <tom@openbsd.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <lib/libkern/libkern.h>
+#include <lib/libsa/stand.h>
+
+#include <sys/param.h>
+#include <sys/exec.h>
+
+#include "../../../../lib/libsa/loadfile.h"
+
+#undef ELFSIZE
+#define ELFSIZE 32
+
+#include <sys/exec_elf.h>
+
+#include "../../../../lib/libsa/loadfile_elf.c"
diff --git a/sys/arch/amd64/stand/libsa/elf64.c b/sys/arch/amd64/stand/libsa/elf64.c
new file mode 100644
index 00000000000..d7d11c843c4
--- /dev/null
+++ b/sys/arch/amd64/stand/libsa/elf64.c
@@ -0,0 +1,32 @@
+/* $OpenBSD: elf64.c,v 1.1 2007/05/30 01:25:43 tom Exp $ */
+
+/*
+ * Copyright (c) 2007 Tom Cosgrove <tom@openbsd.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <lib/libkern/libkern.h>
+#include <lib/libsa/stand.h>
+
+#include <sys/param.h>
+#include <sys/exec.h>
+
+#include "../../../../lib/libsa/loadfile.h"
+
+#undef ELFSIZE
+#define ELFSIZE 64
+
+#include <sys/exec_elf.h>
+
+#include "../../../../lib/libsa/loadfile_elf.c"
diff --git a/sys/arch/amd64/stand/pxeboot/Makefile b/sys/arch/amd64/stand/pxeboot/Makefile
index e200e1b2138..801ff654c3e 100644
--- a/sys/arch/amd64/stand/pxeboot/Makefile
+++ b/sys/arch/amd64/stand/pxeboot/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.6 2007/05/27 18:38:33 tom Exp $
+# $OpenBSD: Makefile,v 1.7 2007/05/30 01:25:43 tom Exp $
.include "${.CURDIR}/../Makefile.inc"
@@ -34,7 +34,8 @@ SRCS+= alloc.c exit.c getfile.c gets.c globals.c strcmp.c strlen.c \
strerror.c strncpy.c strtol.c strtoll.c ctime.c strlcpy.c strlcat.c
# io routines
SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c fstat.c ioctl.c lseek.c \
- read.c stat.c write.c cread.c readdir.c cons.c loadfile.c
+ read.c stat.c write.c cread.c readdir.c cons.c loadfile.c \
+ elf32.c elf64.c
# network routines
SRCS+= ether.c netif.c rpc.c
# network info services
diff --git a/sys/arch/amd64/stand/pxeboot/conf.c b/sys/arch/amd64/stand/pxeboot/conf.c
index 5ef3af4a59e..78f17a4ef37 100644
--- a/sys/arch/amd64/stand/pxeboot/conf.c
+++ b/sys/arch/amd64/stand/pxeboot/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.14 2007/05/27 18:38:33 tom Exp $ */
+/* $OpenBSD: conf.c,v 1.15 2007/05/30 01:25:43 tom Exp $ */
/*
* Copyright (c) 2004 Tom Cosgrove
@@ -25,7 +25,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
*/
#include <sys/types.h>
@@ -45,7 +44,7 @@
#include "pxeboot.h"
#include "pxe_net.h"
-const char version[] = "1.13";
+const char version[] = "2.00";
int debug = 0;
#undef _TEST