Name Date Size #Lines LOC

..--

boot.cmdH A D05-Jun-2025230 95

genimage.cfgH A D05-Jun-2025500 3731

readme.txtH A D05-Jun-2025690 3018

readme.txt

1OrangePi Plus/Plus2
2
3Intro
4=====
5
6This default configuration will allow you to start experimenting with the
7buildroot environment for the OrangePi Plus/Plus2. With the current configuration
8it will bring-up the board, and allow access through the serial console.
9
10How to build it
11===============
12
13Configure Buildroot:
14
15    $ make orangepi_plus_defconfig
16
17Compile everything and build the SD card image:
18
19    $ make
20
21How to write the SD card
22========================
23
24Once the build process is finished you will have an image called "sdcard.img"
25in the output/images/ directory.
26
27Copy the bootable "sdcard.img" onto an SD card with "dd":
28
29  $ sudo dd if=output/images/sdcard.img of=/dev/sdX
30