-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #872 from YoeDistro/kraj/master
update layers
- Loading branch information
Showing
18 changed files
with
93 additions
and
22 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
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
Submodule meta-arm
updated
15 files
Submodule meta-clang
updated
3 files
+1 −1 | conf/layer.conf | |
+1 −0 | conf/nonclangable.conf | |
+2 −2 | recipes-devtools/clang/clang.inc |
Submodule meta-intel
updated
2 files
+3 −3 | recipes-kernel/linux/linux-intel-rt_6.1.bb | |
+3 −3 | recipes-kernel/linux/linux-intel_6.1.bb |
Submodule meta-odroid
updated
1 files
+1 −1 | meta-odroid-extras/recipes-graphics/mesa/mesa-gl_%.bbappend |
Submodule meta-openembedded
updated
45 files
Submodule meta-qcom
updated
34 files
Submodule meta-qt6
updated
10 files
Submodule meta-ti
updated
7 files
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 |
---|---|---|
@@ -1,2 +1,7 @@ | ||
# enable busybox for init and mdev for device manager | ||
INIT_MANAGER = "mdev-busybox" | ||
|
||
# We want to use sysvinit scripts to initialize a complete system | ||
# default is bare system where init system needs to be told what to run | ||
DISTRO_FEATURES:append = " sysvinit " | ||
DISTRO_FEATURES_BACKFILL_CONSIDERED:remove = "sysvinit" |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,4 +2,3 @@ require yoe.inc | |
require glibc.inc | ||
require busyboxinit.inc | ||
require eglfs.inc | ||
require mdev.inc |
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 |
---|---|---|
|
@@ -2,4 +2,3 @@ require yoe.inc | |
require musl.inc | ||
require busyboxinit.inc | ||
require eglfs.inc | ||
require mdev.inc |
60 changes: 60 additions & 0 deletions
60
sources/meta-yoe/recipes-core/images/machines/imx6ul-var-dart.inc
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,60 @@ | ||
# We use updater to handle disk/SD management, therefore remove 96boards-tools | ||
IMAGE_INSTALL:remove = "96boards-tools" | ||
|
||
KERNEL_IMAGE = "${KERNEL_IMAGETYPE}-initramfs-${MACHINE}.bin" | ||
|
||
KERNEL_ARTEFACTS = "\ | ||
${KERNEL_IMAGETYPE} \ | ||
imx6ul-var-dart-6ulcustomboard-emmc-sd-card.dtb \ | ||
imx6ul-var-dart-6ulcustomboard-emmc-wifi.dtb \ | ||
imx6ul-var-dart-6ulcustomboard-nand-sd-card.dtb \ | ||
imx6ul-var-dart-6ulcustomboard-nand-wifi.dtb \ | ||
" | ||
DTBO_ARTEFACTS = "\ | ||
" | ||
|
||
ROOTFS_ARTEFACTS = "rootfs.ext4.xz" | ||
|
||
BOOTLOADER_ARTEFACTS = "\ | ||
SPL-sd \ | ||
SPL-nand \ | ||
u-boot.img-nand \ | ||
u-boot.img-sd \ | ||
fw_env.config \ | ||
" | ||
|
||
# Anything that is not mentioned above but it is created during updater artifacts creation e.g. | ||
# default DTB symlinks etc. | ||
EXTRA_ARTEFACTS = "imx6ul-var-dart-6ulcustomboard-nand-wifi-imx6ul-var-dart.dtb" | ||
|
||
UPDATE_IMAGES = "version.txt ${BOOTLOADER_ARTEFACTS} ${KERNEL_ARTEFACTS} ${DTBO_ARTEFACTS} ${ROOTFS_ARTEFACTS} ${EXTRA_ARTEFACTS}" | ||
|
||
do_updater() { | ||
echo "IMG_VERSION = ${IMG_VERSION}" | ||
rm -rf ${TOPDIR}/deploy/${MACHINE} | ||
install -d ${TOPDIR}/deploy/${MACHINE} | ||
OLDPWD="$PWD" | ||
cd ${TOPDIR}/deploy/${MACHINE} | ||
echo "${IMG_VERSION}" > version.txt | ||
install ${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.ext4.xz ${ROOTFS_ARTEFACTS} | ||
for f in ${KERNEL_ARTEFACTS} ${BOOTLOADER_ARTEFACTS} | ||
do | ||
install ${DEPLOY_DIR_IMAGE}/$f $f | ||
done | ||
#default device tree file One of the dtbs from BOOTLOADER_ARTEFACTS here we choose 'wifi with nand' one | ||
install imx6ul-var-dart-6ulcustomboard-nand-wifi.dtb imx6ul-var-dart-6ulcustomboard-nand-wifi-imx6ul-var-dart.dtb | ||
|
||
for f in ${DTBO_ARTEFACTS} | ||
do | ||
install -D ${DEPLOY_DIR_IMAGE}/`basename $f` $f | ||
done | ||
# Match kernel image with wic | ||
rm ${KERNEL_IMAGETYPE} | ||
install ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE} ${KERNEL_IMAGETYPE} | ||
sha256sum ${UPDATE_IMAGES} > update.sha256 | ||
rm -rf ${TOPDIR}/deploy/${UPDATE_IMAGE_NAME}_${IMG_VERSION}.upd | ||
ls ${UPDATE_IMAGES_} | cpio -ov -H newc > ${TOPDIR}/deploy/${UPDATE_IMAGE_NAME}_${IMG_VERSION}.upd | ||
install ${TOPDIR}/deploy/${UPDATE_IMAGE_NAME}_${IMG_VERSION}.upd ${DEPLOY_DIR_IMAGE}/${UPDATE_IMAGE_NAME}_${IMG_VERSION}.upd | ||
cd ${OLDPWD} | ||
rm -rf ${TOPDIR}/deploy/${MACHINE} | ||
} |