Commit 2f1eb9e4 authored by Ulf Samuelsson's avatar Ulf Samuelsson
Browse files

Remove unneeded ARM architecure patch, just a clone of SAM9260 support

parent 83e90346
Loading
Loading
Loading
Loading

target/device/ARM/Config.in

deleted100644 → 0
+0 −20
Original line number Diff line number Diff line
menuconfig BR2_TARGET_ARM
	bool "Generic ARM Support"
	depends on BR2_arm
	depends on !BR2_TARGET_ARMLTD
	depends on !BR2_TARGET_ATMEL
	depends on !BR2_TARGET_SHARP
	default y

if BR2_TARGET_ARM

config BR2_BOARD_NAME
	string "Board Name"
	default "arm"

config BR2_BOARD_PATH
	string "Board Path"
	default "target/device/ARM"

endif

target/device/ARM/Makefile.in

deleted100644 → 0
+0 −47
Original line number Diff line number Diff line
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
+0 −1417

File deleted.

Preview size limit exceeded, changes collapsed.

+0 −0

Empty file deleted.

+0 −3
Original line number Diff line number Diff line
@@ -7,8 +7,6 @@ comment "Preset Devices"
source "target/device/AMD/Config.in"
source "target/device/ARMLTD/Config.in"
source "target/device/Atmel/Config.in"
source "target/device/Hitachi/Config.in"
source "target/device/jp/Config.in"
source "target/device/KwikByte/Config.in"
source "target/device/Soekris/Config.in"
source "target/device/valka/Config.in"
@@ -16,7 +14,6 @@ source "target/device/Via/Config.in"

comment "Generic Architecture support"

source "target/device/ARM/Config.in"
source "target/device/x86/Config.in"

# This must be last