From 6a352a5e5d4502b4cbb1ecb1b2c635d87538404c Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 18 Dec 2009 19:40:00 +0100 Subject: while here, add all other popular BSD's too --- Config.in | 12 ++++++++++++ mk/build.mk | 15 +++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/Config.in b/Config.in index 3f107feaf..8970fc779 100644 --- a/Config.in +++ b/Config.in @@ -101,6 +101,18 @@ config ADK_HOST_FREEBSD prompt "FreeBSD" boolean +config ADK_HOST_MIRBSD + prompt "MirBSD" + boolean + +config ADK_HOST_OPENBSD + prompt "OpenBSD" + boolean + +config ADK_HOST_NETBSD + prompt "OpenBSD" + boolean + endchoice endmenu diff --git a/mk/build.mk b/mk/build.mk index eadf61d65..9f35a3827 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -233,6 +233,12 @@ ifeq (${OStype},FreeBSD) endif ifeq (${OStype},MirBSD) @echo ADK_HOST_MIRBSD=y > $(TOPDIR)/.defconfig +endif +ifeq (${OStype},OpenBSD) + @echo ADK_HOST_OPENBSD=y > $(TOPDIR)/.defconfig +endif +ifeq (${OStype},NetBSD) + @echo ADK_HOST_NETBSD=y > $(TOPDIR)/.defconfig endif @if [ ! -z "$(TARGET)" ];then \ grep "^config" target/Config.in \ @@ -262,6 +268,15 @@ ifeq (${OStype},Linux) endif ifeq (${OStype},FreeBSD) @echo ADK_HOST_FREEBSD=y > $(TOPDIR)/all.config +endif +ifeq (${OStype},MirBSD) + @echo ADK_HOST_MIRBSD=y > $(TOPDIR)/all.config +endif +ifeq (${OStype},OpenBSD) + @echo ADK_HOST_OPENBSD=y > $(TOPDIR)/all.config +endif +ifeq (${OStype},NetBSD) + @echo ADK_HOST_NETBSD=y > $(TOPDIR)/all.config endif @if [ ! -z "$(TARGET)" ];then \ grep "^config" target/Config.in \ -- cgit v1.2.3