Clarify that wolfBoot_open_image_address expects the passed in img structure to be memset and does not perform the memset itself. #1865
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test parsing tools (elf and fdt) | |
| on: | |
| push: | |
| branches: [ 'master', 'main', 'release/**' ] | |
| pull_request: | |
| branches: [ '*' ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Install cross compilers | |
| run: | | |
| sudo sed -i 's|http://azure.archive.ubuntu.com/ubuntu/|http://mirror.arizona.edu/ubuntu/|g' /etc/apt/sources.list | |
| sudo apt-get update | |
| sudo apt-get install -y gcc-arm-none-eabi gcc-powerpc-linux-gnu | |
| - name: make distclean | |
| run: | | |
| make distclean | |
| - name: Select config | |
| run: | | |
| cp config/examples/nxp-t1024.config .config | |
| - name: Build wolfBoot | |
| run: | | |
| make | |
| - name: Build tools | |
| run: | | |
| make elf-parser | |
| make fdt-parser | |
| - name: Run elf-parser test | |
| run: | | |
| ./tools/elf-parser/elf-parser | |
| - name: Run fdt-parser test (nxp_t1024.dtb) | |
| run: | | |
| ./tools/fdt-parser/fdt-parser ./tools/fdt-parser/nxp_t1024.dtb -t |