aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJose Luis Duran <jlduran@FreeBSD.org>2026-01-27 05:54:04 +0000
committerJose Luis Duran <jlduran@FreeBSD.org>2026-01-30 01:42:00 +0000
commitf54f362d62c638529b66ea351821752e756a9a21 (patch)
treef2a45a4cbab1a7320feabc59c7c7460d1aae1f27 /tools
parentba56760a4789af06b8b7173700c1f14996ef9b5e (diff)
nanobsd: embedded: Stub out experimental functionsHEADmain
Stub out both experimental functions introduced in ecc039be7fdd when doing embedded builds. Fixes: ecc039be7fdd ("nanobsd: Add a NO_ROOT build option") MFC after: 3 days
Diffstat (limited to 'tools')
-rw-r--r--tools/tools/nanobsd/embedded/common7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/tools/nanobsd/embedded/common b/tools/tools/nanobsd/embedded/common
index f8df8f2698dd..87dad52fcaca 100644
--- a/tools/tools/nanobsd/embedded/common
+++ b/tools/tools/nanobsd/embedded/common
@@ -622,6 +622,9 @@ calculate_partitioning() {
create_code_slice() {
}
+_create_code_slice() {
+}
+
# Each major disk scheme has its own routine. Generally
# this is for mbr, gpt, etc. These are generally are widely
# shared, but some specialized formats won't be shared.
@@ -629,6 +632,10 @@ create_diskimage() {
eval create_diskimage_${NANO_DISK_SCHEME}
}
+_create_diskimage() {
+ eval create_diskimage_${NANO_DISK_SCHEME}
+}
+
# Set the path to the same path we use for buldworld to use latest mkimg
NANO_TARGET=$(cd ${NANO_SRC}; ${NANO_MAKE} TARGET_ARCH=${NANO_ARCH} -V _TARGET)
NANO_TMPPATH=$(cd ${NANO_SRC}; ${NANO_MAKE} MK_AUTO_OBJ=no TARGET=${NANO_TARGET} TARGET_ARCH=${NANO_ARCH} -f Makefile.inc1 buildenv -V TMPPATH)