modify gen_misc and gen_appbin to support gcc toolchain
This commit is contained in:
parent
cb4a49e0db
commit
1f644592b3
|
@ -7,13 +7,23 @@ del /F ..\bin\eagle.app.v6.flash.bin ..\bin\eagle.app.v6.irom0text.bin ..\bin\ea
|
||||||
|
|
||||||
cd .output\eagle\debug\image
|
cd .output\eagle\debug\image
|
||||||
|
|
||||||
xt-objdump -x -s eagle.app.v6.out > ..\..\..\..\..\bin\eagle.app.v6.dump
|
if %XTENSA_CORE%==lx106 (
|
||||||
xt-objdump -S eagle.app.v6.out > ..\..\..\..\..\bin\eagle.app.v6.S
|
xt-objdump -x -s eagle.app.v6.out > ..\..\..\..\..\bin\eagle.app.v6.dump
|
||||||
|
xt-objdump -S eagle.app.v6.out > ..\..\..\..\..\bin\eagle.app.v6.S
|
||||||
|
|
||||||
xt-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin
|
xt-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin
|
||||||
xt-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin
|
xt-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin
|
||||||
xt-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin
|
xt-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin
|
||||||
xt-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin
|
xt-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin
|
||||||
|
) else (
|
||||||
|
xtensa-lx106-elf-objdump -x -s eagle.app.v6.out > ..\..\..\..\..\bin\eagle.app.v6.dump
|
||||||
|
xtensa-lx106-elf-objdump -S eagle.app.v6.out > ..\..\..\..\..\bin\eagle.app.v6.S
|
||||||
|
|
||||||
|
xtensa-lx106-elf-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin
|
||||||
|
xtensa-lx106-elf-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin
|
||||||
|
xtensa-lx106-elf-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin
|
||||||
|
xtensa-lx106-elf-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin
|
||||||
|
)
|
||||||
|
|
||||||
gen_appbin.py eagle.app.v6.out v6
|
gen_appbin.py eagle.app.v6.out v6
|
||||||
|
|
||||||
|
|
|
@ -5,13 +5,13 @@ rm ../bin/eagle.app.v6.flash.bin ../bin/eagle.app.v6.irom0text.bin ../bin/eagle.
|
||||||
|
|
||||||
cd .output/eagle/debug/image
|
cd .output/eagle/debug/image
|
||||||
|
|
||||||
xt-objdump -x -s eagle.app.v6.out > ../../../../../bin/eagle.app.v6.dump
|
xtensa-lx106-elf-objdump -x -s eagle.app.v6.out > ../../../../../bin/eagle.app.v6.dump
|
||||||
xt-objdump -S eagle.app.v6.out > ../../../../../bin/eagle.app.v6.S
|
xtensa-lx106-elf-objdump -S eagle.app.v6.out > ../../../../../bin/eagle.app.v6.S
|
||||||
|
|
||||||
xt-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin
|
xtensa-lx106-elf-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin
|
||||||
xt-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin
|
xtensa-lx106-elf-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin
|
||||||
xt-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin
|
xtensa-lx106-elf-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin
|
||||||
xt-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin
|
xtensa-lx106-elf-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin
|
||||||
|
|
||||||
../../../../../tools/gen_appbin.py eagle.app.v6.out v6
|
../../../../../tools/gen_appbin.py eagle.app.v6.out v6
|
||||||
|
|
||||||
|
|
|
@ -7,10 +7,17 @@ rm ..\bin\upgrade\%1.bin
|
||||||
|
|
||||||
cd .output\eagle\debug\image\
|
cd .output\eagle\debug\image\
|
||||||
|
|
||||||
xt-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin
|
if %XTENSA_CORE%==lx106 (
|
||||||
xt-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin
|
xt-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin
|
||||||
xt-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin
|
xt-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin
|
||||||
xt-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin
|
xt-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin
|
||||||
|
xt-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin
|
||||||
|
) else (
|
||||||
|
xtensa-lx106-elf-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin
|
||||||
|
xtensa-lx106-elf-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin
|
||||||
|
xtensa-lx106-elf-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin
|
||||||
|
xtensa-lx106-elf-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin
|
||||||
|
)
|
||||||
|
|
||||||
gen_appbin.py eagle.app.v6.out v6
|
gen_appbin.py eagle.app.v6.out v6
|
||||||
|
|
||||||
|
|
|
@ -6,13 +6,13 @@ rm ../bin/upgrade/user$1.bin ../bin/upgrade/user$1.dump ../bin/upgrade/user$1.S
|
||||||
|
|
||||||
cd .output/eagle/debug/image/
|
cd .output/eagle/debug/image/
|
||||||
|
|
||||||
xt-objdump -x -s eagle.app.v6.out > ../../../../../bin/upgrade/user$1.dump
|
xtensa-lx106-elf-objdump -x -s eagle.app.v6.out > ../../../../../bin/upgrade/user$1.dump
|
||||||
xt-objdump -S eagle.app.v6.out > ../../../../../bin/upgrade/user$1.S
|
xtensa-lx106-elf-objdump -S eagle.app.v6.out > ../../../../../bin/upgrade/user$1.S
|
||||||
|
|
||||||
xt-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin
|
xtensa-lx106-elf-objcopy --only-section .text -O binary eagle.app.v6.out eagle.app.v6.text.bin
|
||||||
xt-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin
|
xtensa-lx106-elf-objcopy --only-section .data -O binary eagle.app.v6.out eagle.app.v6.data.bin
|
||||||
xt-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin
|
xtensa-lx106-elf-objcopy --only-section .rodata -O binary eagle.app.v6.out eagle.app.v6.rodata.bin
|
||||||
xt-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin
|
xtensa-lx106-elf-objcopy --only-section .irom0.text -O binary eagle.app.v6.out eagle.app.v6.irom0text.bin
|
||||||
|
|
||||||
../../../../../tools/gen_appbin.py eagle.app.v6.out v6
|
../../../../../tools/gen_appbin.py eagle.app.v6.out v6
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,10 @@ elf_file = sys.argv[1]
|
||||||
ver = sys.argv[2]
|
ver = sys.argv[2]
|
||||||
#print elf_file
|
#print elf_file
|
||||||
|
|
||||||
cmd = 'xt-nm -g ' + elf_file + ' > eagle.app.sym'
|
if os.getenv('XTENSA_CORE')=='lx106':
|
||||||
|
cmd = 'xt-nm -g ' + elf_file + ' > eagle.app.sym'
|
||||||
|
else:
|
||||||
|
cmd = 'xtensa-lx106-elf-nm -g ' + elf_file + ' > eagle.app.sym'
|
||||||
#print cmd
|
#print cmd
|
||||||
os.system(cmd)
|
os.system(cmd)
|
||||||
|
|
||||||
|
@ -60,7 +63,10 @@ for line in lines:
|
||||||
rodata_start_addr = m.group(1)
|
rodata_start_addr = m.group(1)
|
||||||
print rodata_start_addr
|
print rodata_start_addr
|
||||||
|
|
||||||
cmd = 'genflashbin%s eagle.app.%s.text.bin '%(ver, ver)+entry_addr+' eagle.app.%s.data.bin '%(ver)+ data_start_addr+' eagle.app.%s.rodata.bin '%(ver)+rodata_start_addr
|
if os.getenv('XTENSA_CORE')=='lx106':
|
||||||
|
cmd = 'genflashbin%s eagle.app.%s.text.bin '%(ver, ver)+entry_addr+' eagle.app.%s.data.bin '%(ver)+ data_start_addr+' eagle.app.%s.rodata.bin '%(ver)+rodata_start_addr
|
||||||
|
else:
|
||||||
|
cmd = 'genflashbin%s eagle.app.%s.text.bin '%(ver, ver)+entry_addr+' eagle.app.%s.data.bin '%(ver)+ data_start_addr+' eagle.app.%s.rodata.bin '%(ver)+rodata_start_addr
|
||||||
|
|
||||||
print cmd
|
print cmd
|
||||||
os.system(cmd)
|
os.system(cmd)
|
||||||
|
|
Loading…
Reference in New Issue