diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-06-23 22:57:54 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-06-23 22:57:54 +0200 |
commit | 4aeb8c851ac1952908ec1b89e8e6e432d30c2dfd (patch) | |
tree | 8f45e0750646ae84c49bc426a6ac39d5a1a46fb3 /target/device/KwikByte | |
parent | 6d34f1d3bfc22eb60d9bc9a1ff032dfd31945610 (diff) | |
download | buildroot-novena-4aeb8c851ac1952908ec1b89e8e6e432d30c2dfd.tar.gz buildroot-novena-4aeb8c851ac1952908ec1b89e8e6e432d30c2dfd.zip |
target/device: misc cleanup
Remove outdated and/or unused variables/files.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'target/device/KwikByte')
-rw-r--r-- | target/device/KwikByte/Makefile.in | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/target/device/KwikByte/Makefile.in b/target/device/KwikByte/Makefile.in index 1f0b60b8f..0c109a96f 100644 --- a/target/device/KwikByte/Makefile.in +++ b/target/device/KwikByte/Makefile.in @@ -3,48 +3,8 @@ ifeq ($(BR2_TARGET_KWIKBYTE),y) BOARD_NAME:=$(call qstrip,$(BR2_BOARD_NAME)) BOARD_PATH:=$(call qstrip,$(BR2_BOARD_PATH)) -# These are set by Config.in -DOWNLOAD_LINUX26_VERSION:=$(call qstrip,$(BR2_DOWNLOAD_LINUX26_VERSION)) -ifeq ($(DOWNLOAD_LINUX26_VERSION),) -DOWNLOAD_LINUX26_VERSION=$(LINUX_HEADERS_VERSION) -endif - -LINUX26_VERSION:=$(call qstrip,$(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:=$(BUILD_DIR) - -LINUX26_BINLOC=arch/$(KERNEL_ARCH)/boot/$(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) - ifeq ($(BR2_TARGET_KB9202),y) include target/device/KwikByte/kb9202/Makefile.in endif -# Needs to be AFTER board specific Makefiles - -kwikbyte_status: - @echo BUILD_DIR=$(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) - @echo LINUX26_BINLOC=$(LINUX26_BINLOC) - endif |