cc30201f47
------------------------------------------ Replace $(BOARDNAME)_PATH with BOARD_PATH Set U-Boot targets for 1.2.0-atmel as well as 2009.01-rc1 Remove hardwiring of BusyBox configuration files. Remove older BusyBox configuration files Remove "at91sam9260dfc-linux-2.6.28-rc6.config" from at91sam9g20dfc directory Update "at91rm9200df_defconfig" Add "at91rm9200df-linux-2.6.28.config" Update "at91sam9260dfc_defconfig"
19 lines
470 B
Makefile
19 lines
470 B
Makefile
ifeq ($(strip $(BOARD_NAME)),at91sam9263ek)
|
|
LINUX_BOARD_NAME:=at91sam9263ek
|
|
ifeq ($(U_BOOT_VERSION),1.2.0-atmel)
|
|
UBOOT_BOARD_NAME:=at91sam9263ek
|
|
else
|
|
ifneq ($(BR2_TARGET_UBOOT_BOOTSOURCE_DATAFLASHCARD),)
|
|
UBOOT_BOARD_NAME:=at91sam9263ek_dataflash_cs0
|
|
endif
|
|
|
|
ifneq ($(BR2_TARGET_UBOOT_BOOTSOURCE_DATAFLASH),)
|
|
UBOOT_BOARD_NAME:=at91sam9263ek_dataflash_cs1
|
|
endif
|
|
|
|
ifneq ($(BR2_TARGET_UBOOT_BOOTSOURCE_NANDFLASH),)
|
|
UBOOT_BOARD_NAME:=at91sam9263ek_nandflash
|
|
endif
|
|
endif
|
|
endif
|