reform

MNT Reform: Open Source Portable Computer
Log (Feed) | Files | Refs (Tags) | README

build.sh (271B)


      1 #!/bin/bash
      2 
      3 sudo apt install build-essential pkg-config libusb-1.0-0-dev cmake
      4 git clone https://github.com/raspberrypi/pico-sdk
      5 git clone https://github.com/hathach/tinyusb
      6 export PICO_SDK_PATH="$(pwd)/pico-sdk"
      7 
      8 mkdir -p build
      9 cd build
     10 cmake -DFAMILY=rp2040 ..
     11 
     12 make
     13