nmhw21: rename project
This commit is contained in:
parent
ac6d09c2b7
commit
c0550c87fb
|
|
@ -398,8 +398,8 @@ config TARGET_AM335X_NRHW20
|
|||
select DM_SERIAL
|
||||
select DM_GPIO
|
||||
|
||||
config TARGET_AM335X_HANCOCK
|
||||
bool "Support am335x_hancock"
|
||||
config TARGET_AM335X_NMHW21
|
||||
bool "Support am335x_nmhw21"
|
||||
select CPU_V7
|
||||
select SUPPORT_SPL
|
||||
select DM
|
||||
|
|
@ -905,7 +905,7 @@ source "board/mpl/vcma9/Kconfig"
|
|||
source "board/nm/netbird/Kconfig"
|
||||
source "board/nm/netbird_v2/Kconfig"
|
||||
source "board/nm/nrhw20/Kconfig"
|
||||
source "board/nm/hancock/Kconfig"
|
||||
source "board/nm/nmhw21/Kconfig"
|
||||
source "board/olimex/mx23_olinuxino/Kconfig"
|
||||
source "board/phytec/pcm051/Kconfig"
|
||||
source "board/phytec/pcm052/Kconfig"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
if TARGET_AM335X_HANCOCK
|
||||
if TARGET_AM335X_NMHW21
|
||||
|
||||
config SYS_BOARD
|
||||
default "hancock"
|
||||
default "nmhw21"
|
||||
|
||||
config SYS_VENDOR
|
||||
default "nm"
|
||||
|
|
@ -10,7 +10,7 @@ config SYS_SOC
|
|||
default "am33xx"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
default "am335x_hancock"
|
||||
default "am335x_nmhw21"
|
||||
|
||||
config CONS_INDEX
|
||||
int "UART used for console"
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* board.c
|
||||
*
|
||||
* Board functions for Netmodule Hancock board, based on AM335x EVB
|
||||
* Board functions for Netmodule nmhw21 board, based on AM335x EVB
|
||||
*
|
||||
* Copyright (C) 2018 NetModule AG - http://www.netmodule.com/
|
||||
* Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
|
||||
|
|
@ -36,7 +36,7 @@ SECTIONS
|
|||
*(.__image_copy_start)
|
||||
*(.vectors)
|
||||
CPUDIR/start.o (.text*)
|
||||
board/nm/hancock/built-in.o (.text*)
|
||||
board/nm/nmhw21/built-in.o (.text*)
|
||||
*(.text*)
|
||||
}
|
||||
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
CONFIG_ARM=y
|
||||
CONFIG_TARGET_AM335X_HANCOCK=y
|
||||
CONFIG_TARGET_AM335X_NMHW21=y
|
||||
CONFIG_SPL_STACK_R_ADDR=0x82000000
|
||||
CONFIG_SPL=y
|
||||
CONFIG_SPL_STACK_R=y
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* am335x_hancock.h
|
||||
* am335x_nmhw21.h
|
||||
*
|
||||
* Copyright (C) 2018 NetModule AG - http://www.netmodule.com/
|
||||
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
|
||||
|
|
@ -14,8 +14,8 @@
|
|||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#ifndef __CONFIG_AM335X_HANCOCK_H
|
||||
#define __CONFIG_AM335X_HANCOCK_H
|
||||
#ifndef __CONFIG_AM335X_NMHW21_H
|
||||
#define __CONFIG_AM335X_NMHW21_H
|
||||
|
||||
#include <configs/ti_am335x_common.h>
|
||||
|
||||
|
|
@ -248,4 +248,4 @@
|
|||
/* Never enable ISO it is broken and can lead to a crash */
|
||||
#undef CONFIG_ISO_PARTITION
|
||||
|
||||
#endif /* ! __CONFIG_AM335X_HANCOCK_H */
|
||||
#endif /* ! __CONFIG_AM335X_NMHW21_H */
|
||||
Loading…
Reference in New Issue