From fa889232316b82d7ac8b9b68e8f8760d85f5849b Mon Sep 17 00:00:00 2001 From: pomfi Date: Mon, 31 Mar 2025 20:57:42 +0000 Subject: [PATCH] cubietruck a20 layer --- README.md | 4 +++ cubietruck.coffee | 36 +++++++++++++++++++ .../recipes-core/images/balena-image.inc | 19 ++++++++++ .../linux/linux-mainline_%.bbappend | 2 ++ 4 files changed, 61 insertions(+) create mode 100644 cubietruck.coffee diff --git a/README.md b/README.md index 62896c5..2224e11 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,13 @@ + +cubietruck A20 hinzugefĆ¼gt + # balena-allwinner repository This repo builds support for balenaOS on the Allwinner SoCs. Currently Supported SoC versions: * H3 +* A20 Currently Supported Boards: * [NanoPi Neo Air](http://www.friendlyarm.com/index.php?route=product/product&product_id=151) diff --git a/cubietruck.coffee b/cubietruck.coffee new file mode 100644 index 0000000..0dbe106 --- /dev/null +++ b/cubietruck.coffee @@ -0,0 +1,36 @@ +deviceTypesCommon = require '@resin.io/device-types/common' +{ networkOptions, commonImg, instructions } = deviceTypesCommon + +module.exports = + version: 1 + slug: 'cubietruck' + name: 'cubietruck' + arch: 'armv7hf' + state: 'new' + community: true + private: false + + 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: 'cubietruck' + image: 'balena-image' + fstype: 'balenaos-img' + version: 'yocto-dunfell' + deployArtifact: 'balena-image-cubietruck.balenaos-img' + compressed: true + + configuration: + config: + partition: + primary: 1 + path: '/config.json' + + initialization: commonImg.initialization diff --git a/layers/meta-balena-allwinner/recipes-core/images/balena-image.inc b/layers/meta-balena-allwinner/recipes-core/images/balena-image.inc index abeb02d..97b064a 100644 --- a/layers/meta-balena-allwinner/recipes-core/images/balena-image.inc +++ b/layers/meta-balena-allwinner/recipes-core/images/balena-image.inc @@ -1,3 +1,22 @@ +# +# cubietruck +# + +IMAGE_FSTYPES_append_cubietruck = " balenaos-img" + +# Customize balenaos-img +BALENA_IMAGE_BOOTLOADER_cubietuck = "u-boot" +BALENA_BOOT_PARTITION_FILES_cubietruck = " \ + ${KERNEL_IMAGETYPE}${KERNEL_INITRAMFS}-${MACHINE}.bin:/${KERNEL_IMAGETYPE} \ + sun7i-a20-cubietruck.dtb:/dtb/sun7i-a20-cubietruck.dtb\ + u-boot-sunxi-with-spl.bin: \ +" +IMAGE_CMD_balenaos-img_append_cubietruck () { + # bananapi-M1+ needs uboot written at a specific location + dd if=${DEPLOY_DIR_IMAGE}/u-boot-sunxi-with-spl.bin of=${BALENA_RAW_IMG} conv=notrunc seek=8 bs=1024 +} + + # # Orange Pi Plus2 # diff --git a/layers/meta-balena-allwinner/recipes-kernel/linux/linux-mainline_%.bbappend b/layers/meta-balena-allwinner/recipes-kernel/linux/linux-mainline_%.bbappend index 24301c5..90a8da1 100644 --- a/layers/meta-balena-allwinner/recipes-kernel/linux/linux-mainline_%.bbappend +++ b/layers/meta-balena-allwinner/recipes-kernel/linux/linux-mainline_%.bbappend @@ -35,6 +35,7 @@ BALENA_CONFIGS[axp_power] ="\ BALENA_CONFIGS_append_orangepi-plus2 = " wifi" BALENA_CONFIGS_append_orange-pi-zero = " wifi" BALENA_CONFIGS_append_orange-pi-lite = " wifi" +BALENA_CONFIGS_append_cubietruck = " wifi" BALENA_CONFIGS_append_nanopi-neo-air = " wifi" BALENA_CONFIGS_append_bananapi-m1-plus = " wifi" @@ -48,6 +49,7 @@ BALENA_CONFIGS[wifi] ="\ " BALENA_CONFIGS_append_orangepi-plus2 = " hdmi" +BALENA_CONFIGS_append_cubietruck = " hdmi" BALENA_CONFIGS_DEPS[hdmi] = "\ CONFIG_DRM=y \ CONFIG_DRM_SUN4I=y \