Skip to content

Commit

Permalink
Switch to mickledore
Browse files Browse the repository at this point in the history
Signed-off-by: Neil Armstrong <[email protected]>
  • Loading branch information
superna9999 committed Nov 3, 2023
1 parent 4f4ff5b commit 3e8aca0
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
34 changes: 17 additions & 17 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ build:initrd:
before_script:
- mkdir -p results
- rm -rf /tmp/build_env
- git clone http://github.com/openembedded/openembedded-core --branch=langdale --depth=1 /tmp/build_env
- git clone http://github.com/openembedded/bitbake --branch=2.2 --depth=1 /tmp/build_env/bitbake
- git clone http://github.com/openembedded/openembedded-core --branch=mickledore --depth=1 /tmp/build_env
- git clone http://github.com/openembedded/bitbake --branch=2.4 --depth=1 /tmp/build_env/bitbake
- git clone $(pwd) /tmp/build_env/$(basename $(pwd))

script:
Expand Down Expand Up @@ -109,7 +109,7 @@ build:initrd:
BOOT_METHOD: "u-boot"
LAVA_TAGS: ""

gen:libretech-cc:
.gen:libretech-cc:
extends: .gen
variables:
DEVICE_TYPE: "meson-gxl-s905x-libretech-cc"
Expand All @@ -125,31 +125,31 @@ gen:libretech-cc:
# BOOT_METHOD: "u-boot"
# LAVA_TAGS: ""

gen:hardkernel-odroid-n2:
.gen:hardkernel-odroid-n2:
extends: .gen
variables:
DEVICE_TYPE: "meson-g12b-odroid-n2"
DTB_NAME: "meson-g12b-odroid-n2.dtb"
BOOT_METHOD: "u-boot"
LAVA_TAGS: ""

gen:khadas-vim:
.gen:khadas-vim:
extends: .gen
variables:
DEVICE_TYPE: "meson-gxl-s905x-khadas-vim"
DTB_NAME: "meson-gxl-s905x-khadas-vim.dtb"
BOOT_METHOD: "u-boot"
LAVA_TAGS: ""

gen:khadas-vim2:
.gen:khadas-vim2:
extends: .gen
variables:
DEVICE_TYPE: "meson-gxm-khadas-vim2"
DTB_NAME: "meson-gxm-khadas-vim2.dtb"
BOOT_METHOD: "u-boot"
LAVA_TAGS: "panfrost"

gen:amlogic-p230:
.gen:amlogic-p230:
extends: .gen
variables:
DEVICE_TYPE: "meson-gxl-s905d-p230"
Expand All @@ -165,23 +165,23 @@ gen:amlogic-p230:
BOOT_METHOD: "u-boot"
LAVA_TAGS: ""

gen:seirobotics-sei510:
.gen:seirobotics-sei510:
extends: .gen
variables:
DEVICE_TYPE: "meson-g12a-sei510"
DTB_NAME: "meson-g12a-sei510.dtb"
BOOT_METHOD: "u-boot"
LAVA_TAGS: ""

gen:seirobotics-sei610:
.gen:seirobotics-sei610:
extends: .gen
variables:
DEVICE_TYPE: "meson-sm1-sei610"
DTB_NAME: "meson-sm1-sei610.dtb"
BOOT_METHOD: "u-boot"
LAVA_TAGS: ""

gen:amediatech-x96-max:
.gen:amediatech-x96-max:
extends: .gen
variables:
DEVICE_TYPE: "meson-g12a-x96-max"
Expand All @@ -200,7 +200,7 @@ gen:amediatech-x96-max:
DEVICE_TYPE: "meson-gxl-s805x-libretech-ac"
allow_failure: true

run:libretech-cc:
.run:libretech-cc:
extends: .run
needs: ["build:initrd", "gen:libretech-cc"]
dependencies:
Expand All @@ -222,7 +222,7 @@ run:libretech-cc:
# DEVICE_TYPE: "meson-gxbb-odroidc2"
# allow_failure: true

run:hardkernel-odroid-n2:
.run:hardkernel-odroid-n2:
extends: .run
needs: ["build:initrd", "gen:hardkernel-odroid-n2"]
dependencies:
Expand All @@ -233,7 +233,7 @@ run:hardkernel-odroid-n2:
DEVICE_TYPE: "meson-g12b-odroid-n2"
allow_failure: true

run:khadas-vim:
.run:khadas-vim:
extends: .run
needs: ["build:initrd", "gen:khadas-vim"]
dependencies:
Expand All @@ -244,7 +244,7 @@ run:khadas-vim:
DEVICE_TYPE: "meson-gxl-s905x-khadas-vim"
allow_failure: true

run:khadas-vim2:
.run:khadas-vim2:
extends: .run
needs: ["build:initrd", "gen:khadas-vim2"]
dependencies:
Expand All @@ -255,7 +255,7 @@ run:khadas-vim2:
DEVICE_TYPE: "meson-gxm-khadas-vim2"
allow_failure: true

run:amlogic-p230:
.run:amlogic-p230:
extends: .run
needs: ["build:initrd", "gen:amlogic-p230"]
dependencies:
Expand All @@ -277,7 +277,7 @@ run:amlogic-p230:
DEVICE_TYPE: "meson-gxl-s805x-p241"
allow_failure: true

run:seirobotics-sei610:
.run:seirobotics-sei610:
extends: .run
needs: ["build:initrd", "gen:seirobotics-sei610"]
dependencies:
Expand All @@ -288,7 +288,7 @@ run:seirobotics-sei610:
DEVICE_TYPE: "meson-sm1-sei610"
allow_failure: true

run:amediatech-x96-max:
.run:amediatech-x96-max:
extends: .run
needs: ["build:initrd", "gen:amediatech-x96-max"]
dependencies:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ $ mkdir amlogic-bsp
Checkout Yocto/Poky :
```
$ cd amlogic-bsp
amlogic-bsp$ git clone --depth 1 git://git.yoctoproject.org/poky -b langdale poky
amlogic-bsp$ git clone --depth 1 git://git.yoctoproject.org/poky -b mickledore poky
```

Checkout meta-meson :
```
amlogic-bsp$ git clone https://github.com/superna9999/meta-meson.git meta-meson -b langdale
amlogic-bsp$ git clone https://github.com/superna9999/meta-meson.git meta-meson -b mickledore
```

Initialize environment :
Expand Down
2 changes: 1 addition & 1 deletion conf/layer.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
BBFILE_COLLECTIONS += "meson"
BBFILE_PATTERN_meson = "^${LAYERDIR}/"
BBFILE_PRIORITY_meson = "1"
LAYERSERIES_COMPAT_meson = "kirkstone langdale mickledore"
LAYERSERIES_COMPAT_meson = "kirkstone langdale mickledore nanbield"

# This should only be incremented on significant changes that will
# cause compatibility issues with other layers
Expand Down

0 comments on commit 3e8aca0

Please sign in to comment.