diff options
-rw-r--r-- | mk/build.mk | 3 | ||||
-rw-r--r-- | scripts/scan-tools.sh | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/mk/build.mk b/mk/build.mk index bf10ae5e2..eadf61d65 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -231,6 +231,9 @@ endif ifeq (${OStype},FreeBSD) @echo ADK_HOST_FREEBSD=y > $(TOPDIR)/.defconfig endif +ifeq (${OStype},MirBSD) + @echo ADK_HOST_MIRBSD=y > $(TOPDIR)/.defconfig +endif @if [ ! -z "$(TARGET)" ];then \ grep "^config" target/Config.in \ |grep -i "$(TARGET)" \ diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh index fb2f957e6..266cb2b27 100644 --- a/scripts/scan-tools.sh +++ b/scripts/scan-tools.sh @@ -39,6 +39,9 @@ Linux) FreeBSD) # supported with no extra quirks at the moment ;; +MirBSD) + # supported with no extra quirks at the moment + ;; CYG*) # mkdir /openadk # mount -b -s -o managed "C:/openadk" "/openadk" |