Update star64.yml

This commit is contained in:
Lup Yuen Lee 2023-08-11 19:42:30 +08:00 committed by GitHub
parent b93e659d09
commit e93c621ce0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,6 +69,12 @@ jobs:
## Run the build
make
## Export the Binary Image to nuttx.bin
riscv64-unknown-elf-objcopy \
-O binary \
nuttx \
nuttx.bin
## Build Apps Filesystem
make export
pushd ../apps
@ -87,12 +93,6 @@ jobs:
## Show the size
riscv64-unknown-elf-size nuttx
## Export the Binary Image to nuttx.bin
riscv64-unknown-elf-objcopy \
-O binary \
nuttx \
nuttx.bin
## Dump the disassembly to nuttx.S
riscv64-unknown-elf-objdump \
-t -S --demangle --line-numbers --wide \