From 8759fa511c0464efaea926dcb1271c0ca95e4eb6 Mon Sep 17 00:00:00 2001
From: Linux User <wbx@linux.(none)>
Date: Thu, 1 Oct 2009 20:26:05 +0200
Subject: abstract package backend, add perl

---
 target/native/Makefile  | 1 +
 target/native/device.mk | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

(limited to 'target/native')

diff --git a/target/native/Makefile b/target/native/Makefile
index 4f38c3a0b..3b4039167 100644
--- a/target/native/Makefile
+++ b/target/native/Makefile
@@ -2,6 +2,7 @@
 # material, please see the LICENCE file in the top-level directory.
 
 include $(TOPDIR)/rules.mk
+include $(TOPDIR)/mk/vars.mk
 include $(TOPDIR)/mk/kernel.mk
 include $(TOPDIR)/mk/modules.mk
 include $(TOPDIR)/mk/kernel-build.mk
diff --git a/target/native/device.mk b/target/native/device.mk
index 0b28f9c9e..8f861905d 100644
--- a/target/native/device.mk
+++ b/target/native/device.mk
@@ -1,4 +1,4 @@
-ARCH:=			$(shell uname -m|sed -e "s/i.*86/x86/")
+ARCH:=			$(shell uname -m|sed -e "s/i.*86/x86/" -e "s/_64//")
 CPU_ARCH:=		$(shell uname -m)
 KERNEL_VERSION:=	2.6.30.5
 KERNEL_RELEASE:=	1
-- 
cgit v1.2.3


From 9b7f5eba5fa07d65188d1f40b5bc244f0a2aa129 Mon Sep 17 00:00:00 2001
From: Waldemar Brodkorb <wbx@openadk.org>
Date: Sun, 18 Oct 2009 12:04:02 +0200
Subject: update gcc, binutils, gdb, linux kernel, dnsmasq and alsa

WARNING: tested only on qemu-x86
---
 target/native/device.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'target/native')

diff --git a/target/native/device.mk b/target/native/device.mk
index 8f861905d..522355bee 100644
--- a/target/native/device.mk
+++ b/target/native/device.mk
@@ -1,6 +1,6 @@
 ARCH:=			$(shell uname -m|sed -e "s/i.*86/x86/" -e "s/_64//")
 CPU_ARCH:=		$(shell uname -m)
-KERNEL_VERSION:=	2.6.30.5
+KERNEL_VERSION:=	2.6.31.4
 KERNEL_RELEASE:=	1
 KERNEL_MD5SUM:=		be9c3a697a54ac099c910d068ff0dc03
 TARGET_OPTIMIZATION:=	-Os -pipe
-- 
cgit v1.2.3


From b27533599deeccfe4ca6d176baa8a05307f3805e Mon Sep 17 00:00:00 2001
From: Waldemar Brodkorb <wbx@openadk.org>
Date: Sun, 8 Nov 2009 19:46:16 +0100
Subject: update to latest stable kernel, fix grub2 terminal output

- grub2 documentation is really outdated. you have to read the source
to get serial working.
---
 target/native/device.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'target/native')

diff --git a/target/native/device.mk b/target/native/device.mk
index 522355bee..8b38a16b2 100644
--- a/target/native/device.mk
+++ b/target/native/device.mk
@@ -1,6 +1,6 @@
 ARCH:=			$(shell uname -m|sed -e "s/i.*86/x86/" -e "s/_64//")
 CPU_ARCH:=		$(shell uname -m)
-KERNEL_VERSION:=	2.6.31.4
+KERNEL_VERSION:=	2.6.31.5
 KERNEL_RELEASE:=	1
-KERNEL_MD5SUM:=		be9c3a697a54ac099c910d068ff0dc03
+KERNEL_MD5SUM:=		926bff46d24e2f303e4ee92234e394d8
 TARGET_OPTIMIZATION:=	-Os -pipe
-- 
cgit v1.2.3


From a934246178d7c686bf28c3dbed57b06120cb48d0 Mon Sep 17 00:00:00 2001
From: Waldemar Brodkorb <wbx@openadk.org>
Date: Thu, 19 Nov 2009 09:53:00 +0100
Subject: rename DEVICE to ADK_TARGET

- the name is better, because qemu f.e. is no hardware device
- use make TARGET=alix1c to start with a configuration for this target
- use make TARGET=alix1c allmodconfig to generate a mostly complete config
  to build all available packages for this platform as a package

The all.config and .defconfig files needed to get this working are
dynamically generated.
---
 target/native/device.mk | 6 ------
 target/native/target.mk | 6 ++++++
 2 files changed, 6 insertions(+), 6 deletions(-)
 delete mode 100644 target/native/device.mk
 create mode 100644 target/native/target.mk

(limited to 'target/native')

diff --git a/target/native/device.mk b/target/native/device.mk
deleted file mode 100644
index 8b38a16b2..000000000
--- a/target/native/device.mk
+++ /dev/null
@@ -1,6 +0,0 @@
-ARCH:=			$(shell uname -m|sed -e "s/i.*86/x86/" -e "s/_64//")
-CPU_ARCH:=		$(shell uname -m)
-KERNEL_VERSION:=	2.6.31.5
-KERNEL_RELEASE:=	1
-KERNEL_MD5SUM:=		926bff46d24e2f303e4ee92234e394d8
-TARGET_OPTIMIZATION:=	-Os -pipe
diff --git a/target/native/target.mk b/target/native/target.mk
new file mode 100644
index 000000000..8b38a16b2
--- /dev/null
+++ b/target/native/target.mk
@@ -0,0 +1,6 @@
+ARCH:=			$(shell uname -m|sed -e "s/i.*86/x86/" -e "s/_64//")
+CPU_ARCH:=		$(shell uname -m)
+KERNEL_VERSION:=	2.6.31.5
+KERNEL_RELEASE:=	1
+KERNEL_MD5SUM:=		926bff46d24e2f303e4ee92234e394d8
+TARGET_OPTIMIZATION:=	-Os -pipe
-- 
cgit v1.2.3


From 94e883da1b5ae86935ceebd6a9fb8cab01d0c741 Mon Sep 17 00:00:00 2001
From: Waldemar Brodkorb <wbx@openadk.org>
Date: Sun, 22 Nov 2009 18:37:50 +0100
Subject: add pcengines wrap support

- fix DEVICE -> ADK_TARGET conversions missed last time
- make wrap boot via PXE
---
 target/native/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'target/native')

diff --git a/target/native/Makefile b/target/native/Makefile
index 3b4039167..471008094 100644
--- a/target/native/Makefile
+++ b/target/native/Makefile
@@ -12,8 +12,8 @@ kernel-install:
 
 ifeq ($(FS),initramfs)
 imageinstall: $(BIN_DIR)/$(INITRAMFS)
-	cp $(LINUX_DIR)/arch/x86/boot/bzImage $(BIN_DIR)/${DEVICE}-${ARCH}-kernel
-	@echo 'The kernel file is: ${BIN_DIR}/${DEVICE}-${ARCH}-kernel'
+	cp $(LINUX_DIR)/arch/x86/boot/bzImage $(BIN_DIR)/${ADK_TARGET}-${ARCH}-kernel
+	@echo 'The kernel file is: ${BIN_DIR}/${ADK_TARGET}-${ARCH}-kernel'
 	@echo 'The initramfs image is: ${BIN_DIR}/${INITRAMFS}'
 	@echo 'Login as user root with password linux123 via ssh or console'
 endif
-- 
cgit v1.2.3


From 02e9bb0970ba681f228dc642b1e5026cc97047c7 Mon Sep 17 00:00:00 2001
From: Waldemar Brodkorb <wbx@openadk.org>
Date: Wed, 25 Nov 2009 21:13:21 +0100
Subject: simplify buildsystem

- remove ADK_IPV6, ADK_CXX and ADK_X11
- enable ipv6 by default in uclibc
- enable build of c++ compiler by default
---
 target/native/uclibc.config | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'target/native')

diff --git a/target/native/uclibc.config b/target/native/uclibc.config
index ed46e1519..f779cc8bf 100644
--- a/target/native/uclibc.config
+++ b/target/native/uclibc.config
@@ -144,7 +144,7 @@ UCLIBC_HAS_CRYPT=y
 UCLIBC_HAS_NETWORK_SUPPORT=y
 UCLIBC_HAS_SOCKET=y
 UCLIBC_HAS_IPV4=y
-# UCLIBC_HAS_IPV6 is not set
+UCLIBC_HAS_IPV6=y
 UCLIBC_HAS_RPC=y
 UCLIBC_HAS_FULL_RPC=y
 UCLIBC_HAS_REENTRANT_RPC=y
-- 
cgit v1.2.3


From 512519037afdd5376ddc95aa61b5bfbcb4b0adaf Mon Sep 17 00:00:00 2001
From: Waldemar Brodkorb <wbx@openadk.org>
Date: Sat, 19 Dec 2009 16:53:42 +0100
Subject: update all targets to 2.6.32

---
 target/native/target.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'target/native')

diff --git a/target/native/target.mk b/target/native/target.mk
index 8b38a16b2..cc22ace9b 100644
--- a/target/native/target.mk
+++ b/target/native/target.mk
@@ -1,6 +1,6 @@
 ARCH:=			$(shell uname -m|sed -e "s/i.*86/x86/" -e "s/_64//")
 CPU_ARCH:=		$(shell uname -m)
-KERNEL_VERSION:=	2.6.31.5
+KERNEL_VERSION:=	2.6.32
 KERNEL_RELEASE:=	1
-KERNEL_MD5SUM:=		926bff46d24e2f303e4ee92234e394d8
+KERNEL_MD5SUM:=		260551284ac224c3a43c4adac7df4879
 TARGET_OPTIMIZATION:=	-Os -pipe
-- 
cgit v1.2.3


From 8c2e653abcbeadde7460c34bc2264056a6e2d886 Mon Sep 17 00:00:00 2001
From: Waldemar Brodkorb <wbx@openadk.org>
Date: Sat, 19 Dec 2009 21:59:09 +0100
Subject: rename kernel and images files to be conform

- use ADK_TARGET and FS for kernel files
- use ADK_TARGET, ADK_LIBC and FS for image files

ARCH is implicit in ADK_TARGET encoded.
---
 target/native/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'target/native')

diff --git a/target/native/Makefile b/target/native/Makefile
index 471008094..2b279e4ff 100644
--- a/target/native/Makefile
+++ b/target/native/Makefile
@@ -12,8 +12,8 @@ kernel-install:
 
 ifeq ($(FS),initramfs)
 imageinstall: $(BIN_DIR)/$(INITRAMFS)
-	cp $(LINUX_DIR)/arch/x86/boot/bzImage $(BIN_DIR)/${ADK_TARGET}-${ARCH}-kernel
-	@echo 'The kernel file is: ${BIN_DIR}/${ADK_TARGET}-${ARCH}-kernel'
+	@cp $(LINUX_DIR)/arch/x86/boot/bzImage $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel
+	@echo 'The kernel file is: ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel'
 	@echo 'The initramfs image is: ${BIN_DIR}/${INITRAMFS}'
 	@echo 'Login as user root with password linux123 via ssh or console'
 endif
-- 
cgit v1.2.3


From 8d99513b10d0b93c1468a8f39218d58f2e861d7f Mon Sep 17 00:00:00 2001
From: Waldemar Brodkorb <wbx@openadk.org>
Date: Fri, 5 Mar 2010 18:39:21 +0100
Subject: update to 2.6.33

---
 target/native/target.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'target/native')

diff --git a/target/native/target.mk b/target/native/target.mk
index cc22ace9b..5667e46e4 100644
--- a/target/native/target.mk
+++ b/target/native/target.mk
@@ -1,6 +1,6 @@
 ARCH:=			$(shell uname -m|sed -e "s/i.*86/x86/" -e "s/_64//")
 CPU_ARCH:=		$(shell uname -m)
-KERNEL_VERSION:=	2.6.32
+KERNEL_VERSION:=	2.6.33
 KERNEL_RELEASE:=	1
-KERNEL_MD5SUM:=		260551284ac224c3a43c4adac7df4879
+KERNEL_MD5SUM:=		c3883760b18d50e8d78819c54d579b00
 TARGET_OPTIMIZATION:=	-Os -pipe
-- 
cgit v1.2.3


From aede4f8126893a334d9b7e7b11a15af9975af385 Mon Sep 17 00:00:00 2001
From: Waldemar Brodkorb <wbx@openadk.org>
Date: Fri, 5 Mar 2010 18:52:14 +0100
Subject: convert mips64 to mips

---
 target/native/target.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'target/native')

diff --git a/target/native/target.mk b/target/native/target.mk
index 5667e46e4..c4eb94ace 100644
--- a/target/native/target.mk
+++ b/target/native/target.mk
@@ -1,4 +1,4 @@
-ARCH:=			$(shell uname -m|sed -e "s/i.*86/x86/" -e "s/_64//")
+ARCH:=			$(shell uname -m|sed -e "s/i.*86/x86/" -e "s/_\?64//")
 CPU_ARCH:=		$(shell uname -m)
 KERNEL_VERSION:=	2.6.33
 KERNEL_RELEASE:=	1
-- 
cgit v1.2.3