bsp: a53: rearranging the Cortex A53 folder structure
This patch creates folder 64bit to accomodate cortex-a53 64bit mode BSP files and creates another folder includes_ps for xmpu, xppu, slcr header files. It also changes the standalone tcl to reflect the necessary changes Signed-off-by: Kinjal Pravinbhai Patel <patelki@xilinx.com>
This commit is contained in:
parent
b2f279c410
commit
9b5cb9a6de
66 changed files with 6 additions and 3 deletions
|
@ -96,14 +96,17 @@ proc generate {os_handle} {
|
|||
}
|
||||
"psu_cortexa53" {
|
||||
set procdrv [hsi::get_sw_processor]
|
||||
set ccdir "./src/cortexa53/gcc"
|
||||
foreach entry [glob -nocomplain [file join $cortexa53srcdir *]] {
|
||||
set ccdir "./src/cortexa53/64bit/gcc"
|
||||
set includedir "./src/cortexa53/includes_ps"
|
||||
set cortexa53srcdir64 "./src/cortexa53/64bit"
|
||||
foreach entry [glob -nocomplain [file join $cortexa53srcdir64 *]] {
|
||||
file copy -force $entry "./src/"
|
||||
}
|
||||
foreach entry [glob -nocomplain [file join $ccdir *]] {
|
||||
file copy -force $entry "./src/"
|
||||
}
|
||||
|
||||
file copy -force $includedir "./src/"
|
||||
file delete -force "./src/gcc"
|
||||
file delete -force "./src/profile"
|
||||
if { $enable_sw_profile == "true" } {
|
||||
|
|
|
@ -56,7 +56,7 @@ INCLUDES=-I./. -I${INCLUDEDIR}
|
|||
OUTS = *.o
|
||||
|
||||
INCLUDEFILES=*.h
|
||||
|
||||
INCLUDEFILES+=includes_ps/*.h
|
||||
libs: $(LIBS)
|
||||
|
||||
standalone_libs: $(LIBSOURCES)
|
Loading…
Add table
Reference in a new issue