-
-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve framework welcome page, clean getting started
- Loading branch information
1 parent
2bf12bd
commit b1b1539
Showing
3 changed files
with
57 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
## What it does? | ||
|
||
- Builds custom **kernel**, **image** or a Debian based Linux **distribution** optimized for low-resource hardware, | ||
- Include filesystem generation, low-level control software, kernel image and **bootloader** compilation, | ||
- Provides a **consistent user experience** by keeping system standards across different platforms. | ||
|
||
``` mermaid | ||
graph LR | ||
A[./compile.sh] --> B{Change<br>kernel<br>config}; | ||
B ---> |yes| C["HW"]; | ||
B ---> |no| C["HW"]; | ||
C ---> |branch| D["legacy<br>vendor<br>current<br>edge"]; | ||
D --> |base| E["Debian<br>Ubuntu"]; | ||
E ---> |type| F["CLI"]; | ||
F ---> |type| G["Server"]; | ||
F ---> |type| H["Minimal"]; | ||
E ---> I["Desktop"]; | ||
I ---> K["XFCE"]; | ||
I ---> L["Gnome"]; | ||
I ---> M["Cinammon"]; | ||
I ---> N["KDE Neon"]; | ||
``` | ||
|
||
## Key Advantages | ||
|
||
- Simplicity with interactive graphical interface. | ||
- Generates widely recognized and well maintained userspace | ||
- Fast learning curve for complex operations | ||
|
||
Check other similarities, advantages and disadvantages compared with leading industry standard build software. | ||
|
||
Function | Armbian | Yocto | Buildroot | | ||
|:--|:--|:--|:--| | ||
| Target | general purpose | embedded | embedded / IOT | | ||
| U-boot and kernel | compiled from sources | compiled from sources | compiled from sources | | ||
| Board support maintenance | complete | outside | outside | | ||
| Root file system | Debian or Ubuntu based| custom | custom | | ||
| Package manager | APT | any | none | | ||
| Configurability | limited | large | large | | ||
| Initramfs support | yes | yes | yes | | ||
| Getting started | quick | very slow | slow | | ||
| Cross compilation | yes | yes | yes | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters