fix(system): fixup h13_pv build errors.
This commit is contained in:
@@ -24,7 +24,7 @@ declare -A board_name_map=(
|
|||||||
["v851s_fastboot_sc1725v01_nor"]="v851-e907-sc1725v01-board"
|
["v851s_fastboot_sc1725v01_nor"]="v851-e907-sc1725v01-board"
|
||||||
["v851s_fastboot_sl100_back"]="v851-e907-sl100_back-board"
|
["v851s_fastboot_sl100_back"]="v851-e907-sl100_back-board"
|
||||||
["v851s3_fastboot_sl100_front"]="v851s3-e907-sl100-front-board"
|
["v851s3_fastboot_sl100_front"]="v851s3-e907-sl100-front-board"
|
||||||
["v851s_fastboot_h13_pv"]="v851s3-e907-h13-pv-board"
|
["v851s_fastboot_h13_pv"]="v851-e907-h13-pv-board"
|
||||||
)
|
)
|
||||||
|
|
||||||
function get_melis_board_name() {
|
function get_melis_board_name() {
|
||||||
|
|||||||
2
lichee/brandy-2.0/spl/.gitignore
vendored
2
lichee/brandy-2.0/spl/.gitignore
vendored
@@ -18,3 +18,5 @@ drivers/dram/sun50iw10p1/libchipid
|
|||||||
drivers/dram/sun50iw11p1/libchipid
|
drivers/dram/sun50iw11p1/libchipid
|
||||||
*.patch
|
*.patch
|
||||||
*.swp
|
*.swp
|
||||||
|
!boot0.lds
|
||||||
|
!fes1.lds
|
||||||
|
|||||||
39
lichee/brandy-2.0/spl/arch/arm/cpu/armv7/boot0.lds
Executable file
39
lichee/brandy-2.0/spl/arch/arm/cpu/armv7/boot0.lds
Executable file
@@ -0,0 +1,39 @@
|
|||||||
|
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
|
||||||
|
OUTPUT_ARCH(arm)
|
||||||
|
ENTRY(_start)
|
||||||
|
SECTIONS
|
||||||
|
{
|
||||||
|
. = BOOT0ADDR;
|
||||||
|
. = ALIGN(4);
|
||||||
|
|
||||||
|
.head :
|
||||||
|
{
|
||||||
|
main/boot0_head.o (.rodata)
|
||||||
|
}
|
||||||
|
. = ALIGN(1);
|
||||||
|
.text :
|
||||||
|
{
|
||||||
|
CPUDIR/boot0_entry.o (.text)
|
||||||
|
SOLUTIONDIR/libsolution.o (.text)
|
||||||
|
*(.text)
|
||||||
|
}
|
||||||
|
. = ALIGN(16);
|
||||||
|
.rodata : { *(.rodata) }
|
||||||
|
. = ALIGN(16);
|
||||||
|
.data : { *(.data) }
|
||||||
|
|
||||||
|
. = ALIGN(4);
|
||||||
|
.bss :
|
||||||
|
{
|
||||||
|
__bss_start = .;
|
||||||
|
*(.bss)
|
||||||
|
}
|
||||||
|
. = ALIGN(4);
|
||||||
|
__bss_end = .;
|
||||||
|
|
||||||
|
_end = .;
|
||||||
|
ASSERT(. <= (BOOT0ADDR + BOOT0SIZE), "boot0 image has exceeded its limit.")
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
36
lichee/brandy-2.0/spl/arch/arm/cpu/armv7/fes1.lds
Executable file
36
lichee/brandy-2.0/spl/arch/arm/cpu/armv7/fes1.lds
Executable file
@@ -0,0 +1,36 @@
|
|||||||
|
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
|
||||||
|
OUTPUT_ARCH(arm)
|
||||||
|
ENTRY(_start)
|
||||||
|
SECTIONS
|
||||||
|
{
|
||||||
|
. = FES1ADDR;
|
||||||
|
. = ALIGN(4);
|
||||||
|
|
||||||
|
.head :
|
||||||
|
{
|
||||||
|
main/fes1_head.o (.rodata)
|
||||||
|
}
|
||||||
|
.text :
|
||||||
|
{
|
||||||
|
CPUDIR/fes1_entry.o (.text)
|
||||||
|
*(.text)
|
||||||
|
}
|
||||||
|
. = ALIGN(16);
|
||||||
|
.rodata : { *(.rodata) }
|
||||||
|
. = ALIGN(16);
|
||||||
|
.data : { *(.data) }
|
||||||
|
|
||||||
|
. = ALIGN(4);
|
||||||
|
.bss :
|
||||||
|
{
|
||||||
|
__bss_start = .;
|
||||||
|
*(.bss)
|
||||||
|
}
|
||||||
|
. = ALIGN(4);
|
||||||
|
__bss_end = .;
|
||||||
|
|
||||||
|
_end = .;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
BIN
lichee/brandy-2.0/u-boot-2018/scripts/dtc/dtc
Executable file
BIN
lichee/brandy-2.0/u-boot-2018/scripts/dtc/dtc
Executable file
Binary file not shown.
Reference in New Issue
Block a user