Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. On your computer, navigate in your terminal application to the location where you would like place EVE and Eden
  2. Clone Eden's github

    git clone https://github.com/lf-edge/eden.git
    cd eden

  3. Build Eden

    make clean   <--This cleans up if you have already built something and does nothing if you haven't 
    make build
    ./eden config add default --devmodel RPi4

  4. Add * Add the xen flag if you want to use Xen as your hypervisor, ignore skip to step 5 if you want to use kvm

    ./eden config add second --devmodel RPi4
    ./eden config set default --key eve.hv --value=xen

  5. Build the EVE image and start eden
    ./eden setup
    ./eden start

The output of 'setup' will produce the file 'live.img, which is the image file that you will put on the RPi's SD card

...