Module Name: src
Committed By: thorpej
Date: Sun May 23 01:34:18 UTC 2021
Added Files:
src/sys/arch/alpha/conf: GENERIC.QEMU
Log Message:
Add a GENERIC.QEMU kernel config. This just includes QEMU and then
sets some options specifically to make the Qemu experience a little
batter.
Currently, this just sets COPY_SYMTAB=1 (Qemu loads the kernel directly,
and does not load the symbol table).
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/sys/arch/alpha/conf/GENERIC.QEMU
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Added files:
Index: src/sys/arch/alpha/conf/GENERIC.QEMU
diff -u /dev/null src/sys/arch/alpha/conf/GENERIC.QEMU:1.1
--- /dev/null Sun May 23 01:34:18 2021
+++ src/sys/arch/alpha/conf/GENERIC.QEMU Sun May 23 01:34:17 2021
@@ -0,0 +1,10 @@
+# $NetBSD: GENERIC.QEMU,v 1.1 2021/05/23 01:34:17 thorpej Exp $
+#
+# Generic Alpha kernel specifically configured for Qemu.
+
+include "arch/alpha/conf/GENERIC"
+
+# reserve symbol space and copy the symbol table into it. Needed
+# because Qemu does not load the symbol table when loading the
+# kernel.
+makeoptions COPY_SYMTAB=1