summaryrefslogtreecommitdiffstats
path: root/target/device/ARM/Makefile.in
diff options
context:
space:
mode:
authorUlf Samuelsson <ulf.samuelsson@atmel.com>2009-01-29 17:21:16 +0000
committerUlf Samuelsson <ulf.samuelsson@atmel.com>2009-01-29 17:21:16 +0000
commit2f1eb9e4b8e83273afd19d23bc417991c3e078a1 (patch)
tree6001b66020a948c95db96bc126a6758810bf9929 /target/device/ARM/Makefile.in
parent83e903468ce90de64dd6e87ace6ea28f72b6e5eb (diff)
downloadbuildroot-novena-2f1eb9e4b8e83273afd19d23bc417991c3e078a1.tar.gz
buildroot-novena-2f1eb9e4b8e83273afd19d23bc417991c3e078a1.zip
Remove unneeded ARM architecure patch, just a clone of SAM9260 support
Diffstat (limited to 'target/device/ARM/Makefile.in')
-rw-r--r--target/device/ARM/Makefile.in47
1 files changed, 0 insertions, 47 deletions
diff --git a/target/device/ARM/Makefile.in b/target/device/ARM/Makefile.in
deleted file mode 100644
index 0200686b8..000000000
--- a/target/device/ARM/Makefile.in
+++ /dev/null
@@ -1,47 +0,0 @@
-ifeq ($(BR2_TARGET_ARM),y)
-
-BOARD_NAME:=$(strip $(subst ",, $(BR2_BOARD_NAME)))
-BOARD_PATH:=$(strip $(subst ",, $(BR2_BOARD_PATH)))
-
-# These are set by Config.in
-DOWNLOAD_LINUX26_VERSION:=$(strip $(subst ",, $(BR2_DOWNLOAD_LINUX26_VERSION)))
-#"))
-ifeq ($(DOWNLOAD_LINUX26_VERSION),)
-DOWNLOAD_LINUX26_VERSION=$(LINUX_HEADERS_VERSION)
-endif
-
-LINUX26_VERSION:=$(strip $(subst ",, $(BR2_LINUX26_VERSION)))
-#"))
-ifeq ($(LINUX26_VERSION),)
-LINUX26_VERSION=$(LINUX_HEADERS_VERSION)
-endif
-
-# These are set by "new" Config.in
-ifeq ($(BR2_LINUX26_KCONFIG),)
-LINUX26_KCONFIG:=$(BOARD_PATH)/$(BOARD_NAME)-linux.config
-endif
-
-# This should be part of target/linux/Makefile.in
-LINUX26_BUILD_DIR:=$(PROJECT_BUILD_DIR)
-
-LINUX26_BINLOC=$(LINUX26_FORMAT)
-
-LINUX26_COPYTO:=/tftpboot
-
-#LINUX26_PATCH_DIR:=$(BOARD_PATH)/kernel-patches
-
-# The board specific Makefile.in can redefine BOARD_NAME's
-LINUX_BOARD_NAME:=$(BOARD_NAME)
-
-# Needs to be AFTER board specific Makefiles
-
-arm_status:
- @echo PROJECT_BUILD_DIR=$(PROJECT_BUILD_DIR)
- @echo BOARD_NAME=$(BOARD_NAME)
- @echo BR2_BOARD_PATH=$(BR2_BOARD_PATH)
- @echo MAJOR_MINOR=$(LINUX_MAJOR_VER)$(LINUX_MINOR_VER)
- @echo DOWNLOAD_LINUX26_VERSION=$(DOWNLOAD_LINUX26_VERSION)
- @echo LINUX_SOURCE=$(LINUX_SOURCE)
- @echo TARGETS=$(TARGETS)
-
-endif