-
Notifications
You must be signed in to change notification settings - Fork 0
/
asus-tinker-board-s.coffee
57 lines (45 loc) · 1.79 KB
/
asus-tinker-board-s.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
45
46
47
48
49
50
51
52
53
54
55
56
57
deviceTypesCommon = require '@resin.io/device-types/common'
{ networkOptions, commonImg, instructions } = deviceTypesCommon
ATBS_SD_FLASH = 'Before powering up the <%= TYPE_NAME %>, make sure that the jumper between the 5V power supply and the HDMI connector is in the MASKROM mode, as ilustrated in this link https://tinkerboarding.co.uk/wiki/index.php/Setup'
ATBS_EMMC = 'Before powering up the <%= TYPE_NAME %>, make sure that the jumper between the 5V power supply and the HDMI connector is in the parking (no function) mode, as ilustrated in this link https://tinkerboarding.co.uk/wiki/index.php/Setup'
postProvisioningInstructions = [
instructions.BOARD_SHUTDOWN
instructions.REMOVE_INSTALL_MEDIA
ATBS_EMMC
instructions.BOARD_REPOWER
]
module.exports =
version: 1
slug: 'asus-tinker-board-s'
aliases: [ 'asus-tinker-board-s' ]
name: 'Asus Tinker Board S'
arch: 'armv7hf'
state: 'released'
private: false
stateInstructions:
postProvisioning: postProvisioningInstructions
instructions: [
instructions.ETCHER_SD
instructions.EJECT_SD
instructions.FLASHER_WARNING
ATBS_SD_FLASH
].concat(postProvisioningInstructions)
gettingStartedLink:
windows: 'https://www.balena.io/docs/learn/getting-started/asus-tinker-board-s/nodejs/'
osx: 'https://www.balena.io/docs/learn/getting-started/asus-tinker-board-s/nodejs/'
linux: 'https://www.balena.io/docs/learn/getting-started/asus-tinker-board-s/nodejs/'
supportsBlink: true
yocto:
machine: 'asus-tinker-board-s'
image: 'balena-image-flasher'
fstype: 'balenaos-img'
version: 'yocto-sumo'
deployArtifact: 'balena-image-flasher-asus-tinker-board-s.balenaos-img'
compressed: true
options: [ networkOptions.group ]
configuration:
config:
partition:
primary: 1
path: '/config.json'
initialization: commonImg.initialization