An evolving list of SBC store pages and references.
Discovering different makes and models can be difficult unless you know what you’re looking for. 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 |
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 |
References
Name | Brands |
---|---|
Ubuntu certified | Full range |
Banana Pi | Banana Pi |
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/
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/
Ubuntu certified Ref N/A Full range https://ubuntu.com/certified/devices
Banana Pi Ref N/A Banana Pi https://banana-pi.org/
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.
# 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
```