Merge pull request #61 from StephenSorriaux/feat/add-support-for-orange-pi-one

Add support for Orange Pi One
This commit is contained in:
Florin Sarbu 2019-02-25 16:38:00 +02:00 committed by GitHub
commit 5bae4b417d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 53 additions and 0 deletions

View file

@ -16,6 +16,24 @@ IMAGE_CMD_resinos-img_append_orangepi-plus2 () {
dd if=${DEPLOY_DIR_IMAGE}/u-boot-sunxi-with-spl.bin of=${RESIN_RAW_IMG} conv=notrunc seek=8 bs=1024 dd if=${DEPLOY_DIR_IMAGE}/u-boot-sunxi-with-spl.bin of=${RESIN_RAW_IMG} conv=notrunc seek=8 bs=1024
} }
#
# Orange Pi One
#
IMAGE_FSTYPES_append_orange-pi-one = " resinos-img"
# Customize resinos-img
RESIN_IMAGE_BOOTLOADER_orange-pi-one = "u-boot"
RESIN_BOOT_PARTITION_FILES_orange-pi-one = " \
${KERNEL_IMAGETYPE}${KERNEL_INITRAMFS}-${MACHINE}.bin:/${KERNEL_IMAGETYPE} \
uImage-sun8i-h3-orangepi-one.dtb:/dtb/sun8i-h3-orangepi-one.dtb \
u-boot-sunxi-with-spl.bin: \
"
IMAGE_CMD_resinos-img_append_orange-pi-one () {
# Orange Pi One needs uboot written at a specific location
dd if=${DEPLOY_DIR_IMAGE}/u-boot-sunxi-with-spl.bin of=${RESIN_RAW_IMG} conv=notrunc seek=8 bs=1024
}
# #
# bananapi-M1+ # bananapi-M1+

35
orange-pi-one.coffee Normal file
View file

@ -0,0 +1,35 @@
deviceTypesCommon = require '@resin.io/device-types/common'
{ networkOptions, commonImg, instructions } = deviceTypesCommon
module.exports =
version: 1
slug: 'orange-pi-one'
name: 'Orange Pi One'
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-one'
image: 'resin-image'
fstype: 'resinos-img'
version: 'yocto-sumo'
deployArtifact: 'resin-image-orange-pi-one.resinos-img'
compressed: true
configuration:
config:
partition:
primary: 1
path: '/config.json'
initialization: commonImg.initialization