forked from balena-os/balena-raspberrypi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Vipul Gupta (@vipulgupta2048) <vipulgupta2048@gmail.com>
- Loading branch information
1 parent
9862996
commit 5c9fdfa
Showing
4 changed files
with
66 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
layers/meta-balena-raspberrypi/conf/machine/test-private.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#@TYPE: Machine | ||
##@NAME: test-private | ||
##@DESCRIPTION: Machine configuration for an extra configured genericx86-64 device | ||
|
||
|
||
MACHINEOVERRIDES = "raspberrypi3:${MACHINE}" | ||
include conf/machine/raspberrypi3.conf | ||
|
||
# FIRMWARE_COMPRESSION ?= "1" | ||
|
||
# MACHINE_FEATURES += " efi raid" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
deviceTypesCommon = require '@resin.io/device-types/common' | ||
{ networkOptions, commonImg, instructions } = deviceTypesCommon | ||
|
||
module.exports = | ||
version: 1 | ||
slug: 'test-private' | ||
aliases: [ 'test-private' ] | ||
name: 'Test Private' | ||
arch: 'armv7hf' | ||
state: 'released' | ||
isDefault: true | ||
|
||
imageDownloadAlerts: [ | ||
{ | ||
type: 'warning' | ||
message: 'The Raspberry Pi 3 is not capable of connecting to 5GHz WiFi networks unless you use an external WiFi adapter that supports it. The Raspberry Pi 3 B+ is capable of connecting to both 5GHz and 2.4GHz networks.' | ||
} | ||
] | ||
|
||
instructions: commonImg.instructions | ||
gettingStartedLink: | ||
windows: 'https://www.balena.io/docs/learn/getting-started/test-private/nodejs/' | ||
osx: 'https://www.balena.io/docs/learn/getting-started/test-private/nodejs/' | ||
linux: 'https://www.balena.io/docs/learn/getting-started/test-private/nodejs/' | ||
|
||
options: [ networkOptions.group ] | ||
|
||
yocto: | ||
machine: 'test-private' | ||
image: 'balena-image' | ||
fstype: 'balenaos-img' | ||
version: 'yocto-kirkstone' | ||
deployArtifact: 'balena-image-test-private.balenaos-img' | ||
compressed: true | ||
|
||
configuration: | ||
config: | ||
partition: | ||
primary: 1 | ||
path: '/config.json' | ||
|
||
initialization: commonImg.initialization |