Difference between revisions of "Bouffalo Lab BL808"
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
[[File:BL808_Block_Diagram.jpg|800px]] | [[File:BL808_Block_Diagram.jpg|800px]] | ||
</div> | </div> | ||
+ | |||
+ | == BL808 Linux Build == | ||
+ | |||
+ | <pre> | ||
+ | mkdir buildroot_bouffalo && cd buildroot_bouffalo | ||
+ | git clone https://github.com/buildroot/buildroot | ||
+ | git clone https://github.com/openbouffalo/buildroot_bouffalo | ||
+ | export BR_BOUFFALO_OVERLAY_PATH=$(pwd)/buildroot_bouffalo | ||
+ | cd buildroot | ||
+ | make BR2_EXTERNAL=$BR_BOUFFALO_OVERLAY_PATH pine64_ox64_defconfig | ||
+ | make | ||
+ | </pre> | ||
== Development boards == | == Development boards == |
Revision as of 02:07, 18 November 2023
BL808 Block Diagram
BL808 Linux Build
mkdir buildroot_bouffalo && cd buildroot_bouffalo git clone https://github.com/buildroot/buildroot git clone https://github.com/openbouffalo/buildroot_bouffalo export BR_BOUFFALO_OVERLAY_PATH=$(pwd)/buildroot_bouffalo cd buildroot make BR2_EXTERNAL=$BR_BOUFFALO_OVERLAY_PATH pine64_ox64_defconfig make