[Armadeus-commitlog] armadeus branch, master, updated. armadeus-4.0-2468-g36255af
Brought to you by:
sszy
|
From: Julien B a. A. <ar...@us...> - 2011-08-09 14:03:40
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 36255af9661282c6376c6cb0bf1439a5928dee23 (commit)
via 2a3791ad9ee6d5c29ca7fd75f9ef9eb0af1d24cb (commit)
from 0293ac6c7838fce49f1271adabea5278045ae4f6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 36255af9661282c6376c6cb0bf1439a5928dee23
Merge: 2a3791a 0293ac6
Author: Julien Boibessot <jul...@ar...>
Date: Tue Aug 9 16:02:43 2011 +0200
Merge branch 'master' of ssh://armadeus.git.sourceforge.net/gitroot/armadeus/armadeus
commit 2a3791ad9ee6d5c29ca7fd75f9ef9eb0af1d24cb
Author: Julien Boibessot <jul...@ar...>
Date: Tue Aug 9 16:02:08 2011 +0200
[BUILDROOT] Cleanup Armadeus custom makefiles and update BR default configs accordingly
-----------------------------------------------------------------------
Summary of changes:
buildroot/configs/apf27_defconfig | 6 ++-
buildroot/configs/apf27_webradio_defconfig | 6 ++-
buildroot/configs/apf27test_defconfig | 6 ++-
buildroot/configs/apf51_defconfig | 9 ++---
buildroot/configs/apf51test_defconfig | 6 ++-
buildroot/configs/apf9328_defconfig | 6 ++-
buildroot/configs/apf9328test_defconfig | 6 ++-
buildroot/configs/pps_defconfig | 6 ++-
buildroot/target/.gitignore | 2 +-
buildroot/target/device/armadeus/Makefile.in | 36 +++-----------------
buildroot/target/device/armadeus/apf27/Makefile.in | 1 -
buildroot/target/device/armadeus/apf51/Makefile.in | 1 -
.../target/device/armadeus/apf9328/Makefile.in | 1 -
buildroot/target/device/armadeus/pps/Makefile.in | 1 -
.../target/device/armadeus/rootfs/Makefile.in | 5 ---
.../target/device/armadeus/rootfs/skel.tar.gz | Bin 10240 -> 0 bytes
buildroot/target/device/armadeus/u-boot/u-boot.mk | 6 ---
buildroot/target/u-boot/.gitignore | 2 -
18 files changed, 38 insertions(+), 68 deletions(-)
delete mode 100644 buildroot/target/device/armadeus/rootfs/Makefile.in
delete mode 100644 buildroot/target/device/armadeus/rootfs/skel.tar.gz
delete mode 100644 buildroot/target/u-boot/.gitignore
diff --git a/buildroot/configs/apf27_defconfig b/buildroot/configs/apf27_defconfig
index b4e9875..417649e 100644
--- a/buildroot/configs/apf27_defconfig
+++ b/buildroot/configs/apf27_defconfig
@@ -61,7 +61,9 @@ BR2_PACKAGE_PORTMAP=y
BR2_PACKAGE_UUCP=y
BR2_PACKAGE_WIRELESS_TOOLS=y
BR2_PACKAGE_NANO=y
-BR2_ROOTFS_DEVICE_TABLE="target/device/armadeus/rootfs/device_table.txt"
+BR2_ROOTFS_DEVICE_TABLE="$(ARMADEUS_PATH)/rootfs/device_table.txt"
+BR2_ROOTFS_SKELETON_CUSTOM=y
+BR2_ROOTFS_SKELETON_CUSTOM_PATH="$(ARMADEUS_PATH)/rootfs/target_skeleton"
# BR2_TARGET_ROOTFS_EXT2 is not set
BR2_TARGET_ROOTFS_JFFS2=y
BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K=y
@@ -79,6 +81,6 @@ BR2_TARGET_UBOOT_TOOL_ENV=y
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="2.6.29.6"
-BR2_LINUX_KERNEL_PATCH="$(LINUX26_PATCH_DIR)"
+BR2_LINUX_KERNEL_PATCH="../patches/linux/$(BR2_LINUX_KERNEL_VERSION)"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_BOARD_PATH)/$(BR2_BOARD_NAME)-linux-$(BR2_LINUX_KERNEL_VERSION).config"
diff --git a/buildroot/configs/apf27_webradio_defconfig b/buildroot/configs/apf27_webradio_defconfig
index 4fc2d67..e6799a1 100644
--- a/buildroot/configs/apf27_webradio_defconfig
+++ b/buildroot/configs/apf27_webradio_defconfig
@@ -67,7 +67,9 @@ BR2_PACKAGE_NTP=y
BR2_PACKAGE_PORTMAP=y
BR2_PACKAGE_WIRELESS_TOOLS=y
BR2_PACKAGE_NANO=y
-BR2_ROOTFS_DEVICE_TABLE="target/device/armadeus/rootfs/device_table.txt"
+BR2_ROOTFS_DEVICE_TABLE="$(ARMADEUS_PATH)/rootfs/device_table.txt"
+BR2_ROOTFS_SKELETON_CUSTOM=y
+BR2_ROOTFS_SKELETON_CUSTOM_PATH="$(ARMADEUS_PATH)/rootfs/target_skeleton"
# BR2_TARGET_ROOTFS_EXT2 is not set
BR2_TARGET_ROOTFS_JFFS2=y
BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K=y
@@ -85,6 +87,6 @@ BR2_TARGET_UBOOT_TOOL_ENV=y
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="2.6.29.6"
-BR2_LINUX_KERNEL_PATCH="$(LINUX26_PATCH_DIR)"
+BR2_LINUX_KERNEL_PATCH="../patches/linux/$(BR2_LINUX_KERNEL_VERSION)"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_BOARD_PATH)/$(BR2_BOARD_NAME)-linux-$(BR2_LINUX_KERNEL_VERSION).config"
diff --git a/buildroot/configs/apf27test_defconfig b/buildroot/configs/apf27test_defconfig
index 88b9000..11b5b2b 100644
--- a/buildroot/configs/apf27test_defconfig
+++ b/buildroot/configs/apf27test_defconfig
@@ -123,7 +123,9 @@ BR2_PACKAGE_WIRELESS_TOOLS=y
BR2_PACKAGE_WPA_SUPPLICANT=y
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
BR2_PACKAGE_NANO=y
-BR2_ROOTFS_DEVICE_TABLE="target/device/armadeus/rootfs/device_table.txt"
+BR2_ROOTFS_DEVICE_TABLE="$(ARMADEUS_PATH)/rootfs/device_table.txt"
+BR2_ROOTFS_SKELETON_CUSTOM=y
+BR2_ROOTFS_SKELETON_CUSTOM_PATH="$(ARMADEUS_PATH)/rootfs/target_skeleton"
# BR2_TARGET_ROOTFS_EXT2 is not set
BR2_TARGET_ROOTFS_JFFS2=y
BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K=y
@@ -141,6 +143,6 @@ BR2_TARGET_UBOOT_TOOL_ENV=y
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="2.6.29.6"
-BR2_LINUX_KERNEL_PATCH="$(LINUX26_PATCH_DIR)"
+BR2_LINUX_KERNEL_PATCH="../patches/linux/$(BR2_LINUX_KERNEL_VERSION)"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_BOARD_PATH)/$(BR2_BOARD_NAME)test-linux-$(BR2_LINUX_KERNEL_VERSION).config"
diff --git a/buildroot/configs/apf51_defconfig b/buildroot/configs/apf51_defconfig
index d19b9e4..f6fbd48 100644
--- a/buildroot/configs/apf51_defconfig
+++ b/buildroot/configs/apf51_defconfig
@@ -70,11 +70,10 @@ BR2_PACKAGE_PPPD=y
BR2_PACKAGE_UUCP=y
BR2_PACKAGE_WIRELESS_TOOLS=y
BR2_PACKAGE_NANO=y
-BR2_ROOTFS_DEVICE_TABLE="target/device/armadeus/rootfs/device_table.txt"
+BR2_ROOTFS_DEVICE_TABLE="$(ARMADEUS_PATH)/rootfs/device_table.txt"
+BR2_ROOTFS_SKELETON_CUSTOM=y
+BR2_ROOTFS_SKELETON_CUSTOM_PATH="$(ARMADEUS_PATH)/rootfs/target_skeleton"
# BR2_TARGET_ROOTFS_EXT2 is not set
-BR2_TARGET_ROOTFS_JFFS2=y
-BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K=y
-BR2_TARGET_ROOTFS_JFFS2_PAD=y
BR2_TARGET_ROOTFS_UBIFS=y
BR2_TARGET_ROOTFS_UBIFS_MAXLEBCNT=135301
BR2_TARGET_ROOTFS_UBI=y
@@ -88,6 +87,6 @@ BR2_TARGET_UBOOT_TOOL_ENV=y
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="2.6.38.8"
-BR2_LINUX_KERNEL_PATCH="$(LINUX26_PATCH_DIR)"
+BR2_LINUX_KERNEL_PATCH="../patches/linux/$(BR2_LINUX_KERNEL_VERSION)"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_BOARD_PATH)/$(BR2_BOARD_NAME)-linux-$(BR2_LINUX_KERNEL_VERSION).config"
diff --git a/buildroot/configs/apf51test_defconfig b/buildroot/configs/apf51test_defconfig
index c25f257..80b6a54 100644
--- a/buildroot/configs/apf51test_defconfig
+++ b/buildroot/configs/apf51test_defconfig
@@ -125,7 +125,9 @@ BR2_PACKAGE_WPA_SUPPLICANT_EAP=y
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
BR2_PACKAGE_NANO=y
-BR2_ROOTFS_DEVICE_TABLE="target/device/armadeus/rootfs/device_table.txt"
+BR2_ROOTFS_DEVICE_TABLE="$(ARMADEUS_PATH)/rootfs/device_table.txt"
+BR2_ROOTFS_SKELETON_CUSTOM=y
+BR2_ROOTFS_SKELETON_CUSTOM_PATH="$(ARMADEUS_PATH)/rootfs/target_skeleton"
# BR2_TARGET_ROOTFS_EXT2 is not set
BR2_TARGET_ROOTFS_JFFS2=y
BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K=y
@@ -143,6 +145,6 @@ BR2_TARGET_UBOOT_TOOL_ENV=y
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="2.6.38.8"
-BR2_LINUX_KERNEL_PATCH="$(LINUX26_PATCH_DIR)"
+BR2_LINUX_KERNEL_PATCH="../patches/linux/$(BR2_LINUX_KERNEL_VERSION)"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_BOARD_PATH)/$(BR2_BOARD_NAME)-linux-$(BR2_LINUX_KERNEL_VERSION).config"
diff --git a/buildroot/configs/apf9328_defconfig b/buildroot/configs/apf9328_defconfig
index 456b21c..4c38865 100644
--- a/buildroot/configs/apf9328_defconfig
+++ b/buildroot/configs/apf9328_defconfig
@@ -56,7 +56,9 @@ BR2_PACKAGE_NTP=y
# BR2_PACKAGE_NTP_NTPD is not set
BR2_PACKAGE_PORTMAP=y
BR2_PACKAGE_NANO=y
-BR2_ROOTFS_DEVICE_TABLE="target/device/armadeus/rootfs/device_table.txt"
+BR2_ROOTFS_DEVICE_TABLE="$(ARMADEUS_PATH)/rootfs/device_table.txt"
+BR2_ROOTFS_SKELETON_CUSTOM=y
+BR2_ROOTFS_SKELETON_CUSTOM_PATH="$(ARMADEUS_PATH)/rootfs/target_skeleton"
# BR2_TARGET_ROOTFS_EXT2 is not set
BR2_TARGET_ROOTFS_JFFS2=y
BR2_TARGET_ROOTFS_JFFS2_PAD=y
@@ -70,6 +72,6 @@ BR2_TARGET_UBOOT_TOOL_ENV=y
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="2.6.29.6"
-BR2_LINUX_KERNEL_PATCH="$(LINUX26_PATCH_DIR)"
+BR2_LINUX_KERNEL_PATCH="../patches/linux/$(BR2_LINUX_KERNEL_VERSION)"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_BOARD_PATH)/$(BR2_BOARD_NAME)-linux-$(BR2_LINUX_KERNEL_VERSION).config"
diff --git a/buildroot/configs/apf9328test_defconfig b/buildroot/configs/apf9328test_defconfig
index f719014..c8d46ff 100644
--- a/buildroot/configs/apf9328test_defconfig
+++ b/buildroot/configs/apf9328test_defconfig
@@ -101,7 +101,9 @@ BR2_PACKAGE_NTP_NTPDATE=y
BR2_PACKAGE_PORTMAP=y
BR2_PACKAGE_TCPDUMP=y
BR2_PACKAGE_NANO=y
-BR2_ROOTFS_DEVICE_TABLE="target/device/armadeus/rootfs/device_table.txt"
+BR2_ROOTFS_DEVICE_TABLE="$(ARMADEUS_PATH)/rootfs/device_table.txt"
+BR2_ROOTFS_SKELETON_CUSTOM=y
+BR2_ROOTFS_SKELETON_CUSTOM_PATH="$(ARMADEUS_PATH)/rootfs/target_skeleton"
# BR2_TARGET_ROOTFS_EXT2 is not set
BR2_TARGET_ROOTFS_JFFS2=y
BR2_TARGET_ROOTFS_JFFS2_PAD=y
@@ -115,6 +117,6 @@ BR2_TARGET_UBOOT_TOOL_ENV=y
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="2.6.29.6"
-BR2_LINUX_KERNEL_PATCH="$(LINUX26_PATCH_DIR)"
+BR2_LINUX_KERNEL_PATCH="../patches/linux/$(BR2_LINUX_KERNEL_VERSION)"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_BOARD_PATH)/$(BR2_BOARD_NAME)test-linux-$(BR2_LINUX_KERNEL_VERSION).config"
diff --git a/buildroot/configs/pps_defconfig b/buildroot/configs/pps_defconfig
index 23f1983..a89cb1f 100644
--- a/buildroot/configs/pps_defconfig
+++ b/buildroot/configs/pps_defconfig
@@ -67,7 +67,9 @@ BR2_PACKAGE_WPA_SUPPLICANT_EAP=y
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
BR2_PACKAGE_NANO=y
-BR2_ROOTFS_DEVICE_TABLE="target/device/armadeus/rootfs/device_table.txt"
+BR2_ROOTFS_DEVICE_TABLE="$(ARMADEUS_PATH)/rootfs/device_table.txt"
+BR2_ROOTFS_SKELETON_CUSTOM=y
+BR2_ROOTFS_SKELETON_CUSTOM_PATH="$(ARMADEUS_PATH)/rootfs/target_skeleton"
# BR2_TARGET_ROOTFS_EXT2 is not set
BR2_TARGET_ROOTFS_JFFS2=y
BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K=y
@@ -86,6 +88,6 @@ BR2_TARGET_UBOOT_TOOL_ENV=y
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="2.6.29.6"
-BR2_LINUX_KERNEL_PATCH="$(LINUX26_PATCH_DIR)"
+BR2_LINUX_KERNEL_PATCH="../patches/linux/$(BR2_LINUX_KERNEL_VERSION)"
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_BOARD_PATH)/$(BR2_BOARD_NAME)-linux-$(BR2_LINUX_KERNEL_VERSION).config"
diff --git a/buildroot/target/.gitignore b/buildroot/target/.gitignore
index 6d7796a..233c62c 100644
--- a/buildroot/target/.gitignore
+++ b/buildroot/target/.gitignore
@@ -17,6 +17,6 @@
/squashfs/
/tar/
#ubifs
-#u-boot
+/u-boot/
/x86/
/xtensa/
diff --git a/buildroot/target/device/armadeus/Makefile.in b/buildroot/target/device/armadeus/Makefile.in
index 5265169..9f02e9e 100644
--- a/buildroot/target/device/armadeus/Makefile.in
+++ b/buildroot/target/device/armadeus/Makefile.in
@@ -1,42 +1,16 @@
ifeq ($(strip $(BR2_TARGET_ARMADEUS)),y)
ARMADEUS_PATH:=target/device/armadeus
-
-BOARD_NAME:=$(strip $(subst ",, $(BR2_BOARD_NAME)))
-#"))
-BOARD_PATH:=$(strip $(subst ",, $(BR2_BOARD_PATH)))
-#"))
-
-ifeq ($(BR2_LINUX26_VERSION),)
-# New BR
-BR2_LINUX26_VERSION:=$(BR2_LINUX_KERNEL_VERSION)
-endif
-
-LINUX26_VERSION:=$(strip $(subst ",, $(BR2_LINUX26_VERSION)))
-#"))
-
-LINUX26_PATCH_DIR:=$(strip $(subst ",, "$(ARMADEUS_PATH)/linux/kernel-patches/$(BR2_LINUX26_VERSION)"))
-#"))
-
-# These are set by "new" Config.in
-#LINUX26_KCONFIG:=$(BOARD_PATH)/$(BOARD_NAME)-linux-$(BR2_LINUX26_VERSION).config
-
-# This should be part of target/linux/Makefile.in
-LINUX26_BUILD_DIR:=$(PROJECT_BUILD_DIR)
-
-LINUX26_KERNEL:=$(BINARIES_DIR)/$(BOARD_NAME)-linux.bin
+BOARD_NAME:=$(call qstrip,$(BR2_BOARD_NAME))
+BOARD_PATH:=$(call qstrip,$(BR2_BOARD_PATH))
LINUX26_KERNEL_NAME:=$(BOARD_NAME)-linux.bin
include target/device/armadeus/u-boot/u-boot.mk
-include target/device/armadeus/rootfs/Makefile.in
-include target/device/armadeus/$(BOARD_NAME)/Makefile.in
+#include target/device/armadeus/rootfs/Makefile.in
-ifndef BR2_PACKAGE_BUSYBOX_CONFIG
-BR2_PACKAGE_BUSYBOX_CONFIG:=$(ARMADEUS_PATH)/busybox.config
-endif
-
-#UCLIBC_CONFIG_FILE:=$(BOARD_PATH)/uClibc.config.$(ARCH)
+U_BOOT_TARGET_BIN:=$(BOARD_NAME)-u-boot.bin
+include target/device/armadeus/$(BOARD_NAME)/Makefile.in
endif
diff --git a/buildroot/target/device/armadeus/apf27/Makefile.in b/buildroot/target/device/armadeus/apf27/Makefile.in
index a03fc7b..96f4f8a 100644
--- a/buildroot/target/device/armadeus/apf27/Makefile.in
+++ b/buildroot/target/device/armadeus/apf27/Makefile.in
@@ -1,2 +1 @@
U_BOOT_BIN=u-boot-nand.bin
-U_BOOT_TARGET_BIN:=$(BOARD_NAME)-u-boot.bin
diff --git a/buildroot/target/device/armadeus/apf51/Makefile.in b/buildroot/target/device/armadeus/apf51/Makefile.in
index a03fc7b..96f4f8a 100644
--- a/buildroot/target/device/armadeus/apf51/Makefile.in
+++ b/buildroot/target/device/armadeus/apf51/Makefile.in
@@ -1,2 +1 @@
U_BOOT_BIN=u-boot-nand.bin
-U_BOOT_TARGET_BIN:=$(BOARD_NAME)-u-boot.bin
diff --git a/buildroot/target/device/armadeus/apf9328/Makefile.in b/buildroot/target/device/armadeus/apf9328/Makefile.in
index ca82cd7..bd307be 100644
--- a/buildroot/target/device/armadeus/apf9328/Makefile.in
+++ b/buildroot/target/device/armadeus/apf9328/Makefile.in
@@ -1,2 +1 @@
U_BOOT_BIN=u-boot.bin
-U_BOOT_TARGET_BIN:=$(BOARD_NAME)-u-boot.bin
diff --git a/buildroot/target/device/armadeus/pps/Makefile.in b/buildroot/target/device/armadeus/pps/Makefile.in
index a03fc7b..96f4f8a 100644
--- a/buildroot/target/device/armadeus/pps/Makefile.in
+++ b/buildroot/target/device/armadeus/pps/Makefile.in
@@ -1,2 +1 @@
U_BOOT_BIN=u-boot-nand.bin
-U_BOOT_TARGET_BIN:=$(BOARD_NAME)-u-boot.bin
diff --git a/buildroot/target/device/armadeus/rootfs/Makefile.in b/buildroot/target/device/armadeus/rootfs/Makefile.in
deleted file mode 100644
index 4cdd5e3..0000000
--- a/buildroot/target/device/armadeus/rootfs/Makefile.in
+++ /dev/null
@@ -1,5 +0,0 @@
-# Armadeus target skeleton stuff, may be overridden
-TARGET_SKELETON_LINKS:=$(ARMADEUS_PATH)/rootfs/skel.tar.gz
-TARGET_SKELETON:=$(ARMADEUS_PATH)/rootfs/target_skeleton
-TARGET_DEVICE_TABLE:=$(ARMADEUS_PATH)/rootfs/device_table.txt
-
diff --git a/buildroot/target/device/armadeus/rootfs/skel.tar.gz b/buildroot/target/device/armadeus/rootfs/skel.tar.gz
deleted file mode 100644
index a1d9b9b..0000000
Binary files a/buildroot/target/device/armadeus/rootfs/skel.tar.gz and /dev/null differ
diff --git a/buildroot/target/device/armadeus/u-boot/u-boot.mk b/buildroot/target/device/armadeus/u-boot/u-boot.mk
index fa991c7..f8bc849 100644
--- a/buildroot/target/device/armadeus/u-boot/u-boot.mk
+++ b/buildroot/target/device/armadeus/u-boot/u-boot.mk
@@ -4,12 +4,6 @@
#
#############################################################
-BR2_TARGET_U_BOOT_CONFIG_BOARD=$(BR2_TARGET_UBOOT_BOARDNAME)_config
-ifndef BR2_TARGET_U_BOOT_CONFIG_HEADER_FILE
-BR2_TARGET_U_BOOT_CONFIG_HEADER_FILE=$(BOARD_PATH)/$(BOARD_NAME).h
-endif
-U_BOOT_TARGET_BIN=$(BOARD_NAME)-u-boot.bin
-
BR2_TARGET_UBOOT_ETH1ADDR=""
BR2_TARGET_UBOOT_BOOTARGS=""
BR2_TARGET_UBOOT_BOOTCMD=""
diff --git a/buildroot/target/u-boot/.gitignore b/buildroot/target/u-boot/.gitignore
deleted file mode 100644
index faccc6c..0000000
--- a/buildroot/target/u-boot/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-/Config.in
-/Makefile.in
hooks/post-receive
--
armadeus
|