Skip to content

Latest commit

 

History

History

nuttx

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Apache NuttX RTOS for PinePhone

See the articles...

Apache NuttX RTOS for PinePhone was built with...

## Download NuttX Source Code
mkdir nuttx
cd nuttx
git clone https://github.com/apache/nuttx nuttx
git clone https://github.com/apache/nuttx-apps apps

## Configure NuttX for PinePhone NSH Minimal Build
cd nuttx
tools/configure.sh pinephone:nsh

## Build NuttX
make

## Save the Build Config
cp .config nuttx.config

## Generate the Arm64 Disassembly
aarch64-none-elf-objdump \
  -t -S --demangle --line-numbers --wide \
  nuttx \
  >nuttx.S \
  2>&1

Which produces...

  • nuttx.bin: Binary Image for Apache NuttX RTOS

    (Address: 0x4008 0000, Size: 279 KB)

  • nuttx.S: Arm64 Disassembly for Apache NuttX RTOS

  • nuttx: ELF Image for Apache NuttX RTOS

  • nuttx.map: Linker Map for Apache NuttX RTOS

  • nuttx.config: Build Configuration for Apache NuttX RTOS