File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,11 @@ memory=
4848# Map ELF information to required core type
4949#
5050
51- cpu_arch=` arm-none-eabi- readelf -A " $elf " | awk ' /Tag_CPU_arch:/ { print $2 }' `
52- cpu_profile=` arm-none-eabi- readelf -A " $elf " | awk ' /Tag_CPU_arch_profile:/ { print $2 }' `
53- fp_arch=` arm-none-eabi- readelf -A " $elf " | awk ' /Tag_FP_arch/ { print $2 }' `
54- fp_use=` arm-none-eabi- readelf -A " $elf " | awk ' /Tag_ABI_HardFP_use/ { print $2 }' `
55- ram_addr=` arm-none-eabi- readelf -l " $elf " | awk ' /LOAD.*RW/ { if (min_va == 0 || $3 < min_va) min_va = $3; } END { print(min_va); }' `
51+ cpu_arch=` readelf -A " $elf " | awk ' /Tag_CPU_arch:/ { print $2 }' `
52+ cpu_profile=` readelf -A " $elf " | awk ' /Tag_CPU_arch_profile:/ { print $2 }' `
53+ fp_arch=` readelf -A " $elf " | awk ' /Tag_FP_arch/ { print $2 }' `
54+ fp_use=` readelf -A " $elf " | awk ' /Tag_ABI_HardFP_use/ { print $2 }' `
55+ ram_addr=` readelf -l " $elf " | awk ' /LOAD.*RW/ { if (min_va == 0 || $3 < min_va) min_va = $3; } END { print(min_va); }' `
5656
5757case " $cpu_arch " /" $cpu_profile " in
5858 v4T/)
You can’t perform that action at this time.
0 commit comments