arm64: fix the handling of DDB symbols in early boot

The code which installs the kernel symbol table wasn't being compiled
because the file did not include opt_ddb.h

Reviewed by:	kevans emaste
MFC after:	1 week
Differential Revision: https://reviews.freebsd.org/D43490
This commit is contained in:
Doug Rabson 2024-01-18 16:41:02 +00:00
parent 6b13d60bf4
commit 9fac39c63c

View file

@ -27,6 +27,7 @@
*/
#include "opt_platform.h"
#include "opt_ddb.h"
#include <sys/param.h>
#include <sys/systm.h>
@ -48,6 +49,10 @@
#include <dev/fdt/fdt_common.h>
#endif
#ifdef DDB
#include <ddb/ddb.h>
#endif
extern int *end;
static char *loader_envp;