4aeb8c851a
Remove outdated and/or unused variables/files. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
21 lines
560 B
Makefile
21 lines
560 B
Makefile
# *******************************************************************
|
|
|
|
ifeq ($(BR2_TARGET_ATMEL),y)
|
|
ATMEL_PATH:=target/device/Atmel
|
|
|
|
BOARD_NAME:=$(call qstrip,$(BR2_BOARD_NAME))
|
|
BOARD_PATH:=$(call qstrip,$(BR2_BOARD_PATH))
|
|
|
|
ATMEL_TARGET:=$(ATMEL_PATH)/root
|
|
TARGET_SKELETON:=$(ATMEL_TARGET)/target_skeleton
|
|
TARGET_SKELETON_LINKS:=$(ATMEL_TARGET)/skel.tar.gz
|
|
|
|
ifeq ($(BR2_avr32),y)
|
|
KERNEL_HEADERS_PATCH_DIR=target/device/Atmel/arch-avr32/kernel-headers-2.6.28.2
|
|
endif
|
|
|
|
# Update things in board specific makefiles
|
|
include target/device/Atmel/*/Makefile.in
|
|
|
|
endif
|