An evolving list of SBC store pages and references.
Discovering different makes and models can be difficult unless you know where to look. The goal of this list is not to be exhaustive but give people a good buffet for discovering which make/models are available.
Stores
Name | Location | Brands |
---|---|---|
Globalscale | US (CA) | Marvell |
DFI | US | DFI |
Orange Pi | UK | Orange Pi |
ODROID | South Korea | ODROID |
Zimaboard | China (Shenzhen, Shanghai & Hong Kong) | Zimaboard |
Pine64 | China (Shenzhen & Hong Kong) | Pine64 |
FriendlyElec | China (Shenzhen) | FriendlyElec |
ALLNET.CHINA | China (Shenzhen) | Radxa, StarFive, Penta, QuinLED |
seed studio | China (Shenzhen) | seed studio + full range |
youyeetoo | China (Shenzhen) | youyeetoo + full range |
SiPEED | China (Shenzhen) | SiPEED |
References
Name | Brands |
---|---|
Ubuntu certified | Full range |
Banana Pi | Banana Pi |
Radxa | Radxa |
ASRock | ASRock |
Missions
Name | Mission |
---|---|
Pine64 | “Our goal is to push the envelope and deliver Arm and RISC-V devices that you want to use and develop for. To this end, we actively work with the development community and champion end-user initiatives.” |
seed studio | “To be the most integrated platform for creating hardware solutions for IoT, AI, and Edge Computing application scenarios.” |
How this post was generated:
#!/usr/bin/env bash
# https://forum.tuxdigital.com/t/community-list-of-sbc-store-pages/5722
TableStr=$(cat <<'TableStr__EOF'
Name Type Location Brands Link Mission
--- --- --- --- --- ---
Globalscale Store US (CA) Marvell https://globalscaletechnologies.com/products/
DFI Store US DFI https://dfi-america.com/estore/embedded-board/single-board-computer/1-8-sbc.html
Orange Pi Store UK Orange Pi https://orangepi.com/
ODROID Store South Korea ODROID https://www.hardkernel.com/product-category/odroid-board/
Zimaboard Store China (Shenzhen, Shanghai & Hong Kong) Zimaboard https://shop.zimaboard.com/
Pine64 Store China (Shenzhen & Hong Kong) Pine64 https://pine64.com/product-category/single-board-computers/ "Our goal is to push the envelope and deliver Arm and RISC-V devices that you want to use and develop for. To this end, we actively work with the development community and champion end-user initiatives."
FriendlyElec Store China (Shenzhen) FriendlyElec https://www.friendlyelec.com/
ALLNET.CHINA Store China (Shenzhen) Radxa, StarFive, Penta, QuinLED https://shop.allnetchina.cn/
seed studio Store China (Shenzhen) seed studio + full range https://www.seeedstudio.com/SBC-c-2026.html "To be the most integrated platform for creating hardware solutions for IoT, AI, and Edge Computing application scenarios."
youyeetoo Store China (Shenzhen) youyeetoo + full range https://www.youyeetoo.com/
SiPEED Store China (Shenzhen) SiPEED https://sipeed.aliexpress.com/store/911876460
Ubuntu certified Ref N/A Full range https://ubuntu.com/certified/devices
Banana Pi Ref N/A Banana Pi https://banana-pi.org/
Radxa Ref N/A Radxa https://wiki.radxa.com/Home
ASRock Ref N/A ASRock https://www.asrockind.com/en-gb/single-board-computer
TableStr__EOF
)
StoresOut=
ResourcesOut=
MissionsOut=
IsHeader=1
while IFS=' ' read Name Type Location Brands Link Mission _; do
if [[ $IsHeader ]]; then
[[ $Name == '-'* ]] && IsHeader=
StoresOut+="| ${Name} | ${Location} | ${Brands} |"$'\n'
MissionsOut+="| ${Name} | ${Mission} |"$'\n'
ResourcesOut+="| ${Name} | ${Brands} |"$'\n'
else
if [[ $Type == 'Store' ]]; then
StoresOut+="| [${Name}](${Link}) | ${Location} | ${Brands} |"$'\n'
elif [[ $Type == 'Ref' ]]; then
ResourcesOut+="| [${Name}](${Link}) | ${Brands} |"$'\n'
fi
[[ $Mission ]] && MissionsOut+="| ${Name} | ${Mission} |"$'\n'
fi
done <<< $TableStr
PostString=$(cat <<-PostString__EOF
An evolving list of SBC store pages and references.
Discovering different makes and models can be difficult unless you know where to look. The goal of this list is not to be exhaustive but give people a good buffet for discovering which make/models are available.
# Stores
$StoresOut
# References
$ResourcesOut
# Missions
$MissionsOut
#### How this post was generated:
\`\`\`
$(<"$0")
\`\`\`
#### Submitting a FOSS hardware resource:
Feel free to just to post a link, formatting and all details are purely optional.
\`\`\`\`
\`\`\`
Company name
Category, store or product reference
Location
Brands carried/referenced
https://www.example.com
Mission statement
\`\`\`
\`\`\`\`
PostString__EOF
)
printf '%s' "$PostString"
Submitting a FOSS hardware resource:
Feel free to just to post a link, formatting and all details are purely optional.
```
Company name
Category, store or product reference
Location
Brands carried/referenced
https://www.example.com
Mission statement
```