forked from balena-os/balena-jetson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjetson-nano.coffee
44 lines (35 loc) · 1.14 KB
/
jetson-nano.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
deviceTypesCommon = require '@resin.io/device-types/common'
{ networkOptions, commonImg, instructions } = deviceTypesCommon
BOARD_POWEROFF = 'Remove power from the Jetson Nano Devkit SD-CARD and insert freshly the burnt sd card.'
BOARD_POWERON = 'Power on the board.'
module.exports =
version: 1
slug: 'jetson-nano'
aliases: [ 'jetson-nano' ]
name: 'Nvidia Jetson Nano SD-CARD'
arch: 'aarch64'
state: 'new'
private: false
instructions: [
instructions.ETCHER_SD
BOARD_POWEROFF
BOARD_POWERON
]
gettingStartedLink:
windows: 'https://docs.resin.io/jetson-nano/nodejs/getting-started/#adding-your-first-device'
osx: 'https://docs.resin.io/jetson-nano/nodejs/getting-started/#adding-your-first-device'
linux: 'https://docs.resin.io/jetson-nano/nodejs/getting-started/#adding-your-first-device'
supportsBlink: false
yocto:
machine: 'jetson-nano'
image: 'resin-image'
fstype: 'resinos-img'
version: 'yocto-warrior'
deployArtifact: 'resin-image-jetson-nano.resinos-img'
compressed: true
options: [ networkOptions.group ]
configuration:
config:
partition: 12
path: '/config.json'
initialization: commonImg.initialization