svn commit: r265704 - projects/arm64/sys/boot/common
Andrew Turner
andrew at FreeBSD.org
Thu May 8 19:45:32 UTC 2014
Author: andrew
Date: Thu May 8 19:45:31 2014
New Revision: 265704
URL: http://svnweb.freebsd.org/changeset/base/265704
Log:
Add / to the search path as semihosting only works from the root directory
Modified:
projects/arm64/sys/boot/common/module.c
Modified: projects/arm64/sys/boot/common/module.c
==============================================================================
--- projects/arm64/sys/boot/common/module.c Thu May 8 19:40:37 2014 (r265703)
+++ projects/arm64/sys/boot/common/module.c Thu May 8 19:45:31 2014 (r265704)
@@ -65,7 +65,7 @@ static void moduledir_rebuild(void);
/* load address should be tweaked by first module loaded (kernel) */
static vm_offset_t loadaddr = 0;
-static const char *default_searchpath ="/boot/kernel;/boot/modules";
+static const char *default_searchpath ="/boot/kernel;/boot/modules;/";
static STAILQ_HEAD(, moduledir) moduledir_list = STAILQ_HEAD_INITIALIZER(moduledir_list);
More information about the svn-src-projects
mailing list