From 4c509fb2b812a34246078b97e92425d3578ec3ef Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 16 Dec 2009 19:55:02 +0100 Subject: add basic support for ag241 ar7 based dsl router - my wag54g died. disable wag54g for now. - add 2.6.32 support for ag241. - cpmac still broken --- mk/build.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mk/build.mk') diff --git a/mk/build.mk b/mk/build.mk index 5f7399174..bf10ae5e2 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -298,7 +298,7 @@ ifneq (,$(filter rb%,${TARGET})) endif menuconfig: $(CONFIG)/mconf defconfig - if [ ! -f .config ];then \ + @if [ ! -f .config ];then \ $(CONFIG)/conf -D .defconfig $(CONFIG_CONFIG_IN); \ fi @$(CONFIG)/mconf $(CONFIG_CONFIG_IN) -- cgit v1.2.3 From fa008192cb2c9885ec412f584051f66c2da63908 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 18 Dec 2009 19:35:00 +0100 Subject: start initial MirBSD support --- mk/build.mk | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mk/build.mk') diff --git a/mk/build.mk b/mk/build.mk index bf10ae5e2..eadf61d65 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -230,6 +230,9 @@ ifeq (${OStype},Linux) 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 \ -- cgit v1.2.3 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 --- mk/build.mk | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'mk/build.mk') 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 From 0102d12701a8634300c4b174e5bbeb898218ba18 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sat, 19 Dec 2009 18:04:04 +0100 Subject: fix defconfig for rescue and qemu --- mk/build.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mk/build.mk') diff --git a/mk/build.mk b/mk/build.mk index 9f35a3827..145856d6d 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -249,10 +249,10 @@ endif echo $$symbol >> $(TOPDIR)/.defconfig; \ done; \ fi -ifneq (,$(filter %_qemu,${TARGET})) +ifneq (,$(filter qemu%,${TARGET})) @echo ADK_LINUX_QEMU=y >> $(TOPDIR)/.defconfig endif -ifneq (,$(filter %_rescue,${TARGET})) +ifneq (,$(filter rescue%,${TARGET})) @echo ADK_LINUX_RESCUE=y >> $(TOPDIR)/.defconfig endif ifneq (,$(filter rb%,${TARGET})) -- cgit v1.2.3