orange-pi-zero.coffee: add support for Orange Pi Zero device.
This adds the possibility to build balenaOS for the Orange Pi Zero device.
This commit is contained in:
parent
441f2594a7
commit
98f60e2399
1 changed files with 35 additions and 0 deletions
35
orange-pi-zero.coffee
Normal file
35
orange-pi-zero.coffee
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
|
||||||
|
deviceTypesCommon = require '@resin.io/device-types/common'
|
||||||
|
{ networkOptions, commonImg, instructions } = deviceTypesCommon
|
||||||
|
|
||||||
|
module.exports =
|
||||||
|
version: 1
|
||||||
|
slug: 'orange-pi-zero'
|
||||||
|
name: 'Orange Pi Zero'
|
||||||
|
arch: 'armv7hf'
|
||||||
|
state: 'experimental'
|
||||||
|
|
||||||
|
instructions: commonImg.instructions
|
||||||
|
gettingStartedLink:
|
||||||
|
windows: 'https://docs.resin.io/orange-pi-one/nodejs/getting-started/#adding-your-first-device'
|
||||||
|
osx: 'https://docs.resin.io/orange-pi-one/nodejs/getting-started/#adding-your-first-device'
|
||||||
|
linux: 'https://docs.resin.io/orange-pi-one/nodejs/getting-started/#adding-your-first-device'
|
||||||
|
supportsBlink: true
|
||||||
|
|
||||||
|
options: [ networkOptions.group ]
|
||||||
|
|
||||||
|
yocto:
|
||||||
|
machine: 'orange-pi-zero'
|
||||||
|
image: 'resin-image'
|
||||||
|
fstype: 'resinos-img'
|
||||||
|
version: 'yocto-sumo'
|
||||||
|
deployArtifact: 'resin-image-orange-pi-zero.resinos-img'
|
||||||
|
compressed: true
|
||||||
|
|
||||||
|
configuration:
|
||||||
|
config:
|
||||||
|
partition:
|
||||||
|
primary: 1
|
||||||
|
path: '/config.json'
|
||||||
|
|
||||||
|
initialization: commonImg.initialization
|
Loading…
Add table
Reference in a new issue