Merge pull request #65 from mwohlert/feature/add-support-for-orange-pi-zero
Add support for Orange Pi Zero
This commit is contained in:
commit
5d1d760813
5 changed files with 59 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
LED_FILE_orange-pi-lite = "/sys/devices/platform/leds/leds/orangepi\:red\:status/brightness"
|
||||
LED_FILE_orange-pi-zero = "/sys/devices/platform/leds/leds/orangepi\:red\:status/brightness"
|
||||
|
||||
LED_FILE_nanopi-neo-air = "/sys/class/leds/nanopi\:blue\:status/brightness"
|
||||
|
|
|
@ -74,6 +74,25 @@ IMAGE_CMD_resinos-img_append_orange-pi-lite () {
|
|||
dd if=${DEPLOY_DIR_IMAGE}/u-boot-sunxi-with-spl.bin of=${RESIN_RAW_IMG} conv=notrunc seek=8 bs=1024
|
||||
}
|
||||
|
||||
|
||||
#
|
||||
# Orange Pi Zero
|
||||
#
|
||||
|
||||
IMAGE_FSTYPES_append_orange-pi-zero = " resinos-img"
|
||||
|
||||
#Customize resinos-img
|
||||
RESIN_IMAGE_BOOTLOADER_orange-pi-zero = "u-boot"
|
||||
RESIN_BOOT_PARTITION_FILES_orange-pi-zero = " \
|
||||
${KERNEL_IMAGETYPE}${KERNEL_INITRAMFS}-${MACHINE}.bin:/${KERNEL_IMAGETYPE} \
|
||||
uImage-sun8i-h2-plus-orangepi-zero.dtb:/dtb/sun8i-h2-plus-orangepi-zero.dtb \
|
||||
u-boot-sunxi-with-spl.bin: \
|
||||
"
|
||||
IMAGE_CMD_resinos-img_append_orange-pi-zero () {
|
||||
# Orange Pi Zero 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
|
||||
}
|
||||
|
||||
#
|
||||
# nanopi-neo-air
|
||||
#
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
CONNECTIVITY_FIRMWARES_append = " linux-firmware-ap6212 linux-firmware-brcm43362"
|
||||
CONNECTIVITY_MODULES_append_orangepi-plus2 = " rtl8189"
|
||||
|
||||
CONNECTIVITY_MODULES_append_orange-pi-zero = " xradio"
|
||||
CONNECTIVITY_FIRMWARES_append_orange-pi-zero = " xradio-firmware"
|
||||
|
||||
CONNECTIVITY_FIRMWARES_append_nanopi-neo-air = " linux-firmware-bcm43430"
|
||||
|
|
|
@ -18,6 +18,7 @@ RESIN_CONFIGS[axp_power] ="\
|
|||
"
|
||||
|
||||
RESIN_CONFIGS_append_orangepi-plus2 = " wifi"
|
||||
RESIN_CONFIGS_append_orange-pi-zero = " wifi"
|
||||
RESIN_CONFIGS[wifi] ="\
|
||||
CONFIG_WIRELESS=y \
|
||||
CONFIG_RFKILL=y \
|
||||
|
|
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