• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..18-Apr-2025-

patches/18-Apr-2025-

linux.fragment A D18-Apr-202589 43

readme.txt A D18-Apr-2025672 3018

readme.txt

1OrangePi PC
2
3Intro
4=====
5
6This default configuration will allow you to start experimenting with the
7buildroot environment for the OrangePi PC. 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_pc_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