-
-
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 #949 from YoeDistro/kraj/master
Update layers and add jetson-agx-orin-devkit project
- Loading branch information
Showing
14 changed files
with
119 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
MACHINE = "jetson-agx-orin-devkit" | ||
DISTRO = "yoe" | ||
# "yoe-<libc>-<init-system>-<windowing-system>" | ||
YOE_PROFILE = "yoe-glibc-systemd-x11" | ||
|
||
# Freeescale stuff EULA yeah :( | ||
ACCEPT_FSL_EULA = "1" | ||
|
||
# Acknowledge that Synaptics can revoke their license at any time on the | ||
# Rapsberry pi firmware | ||
LICENSE_FLAGS_ACCEPTED:append = "commercial_ffmpeg" | ||
|
||
# Include the tegra_flash components to the image class | ||
IMAGE_CLASSES:append = " image_types_tegra" | ||
IMAGE_FSTYPES:append = " ext4.xz" | ||
IMAGE_FSTYPES:remove = "ext4 tar.gz wic.*" | ||
|
||
# Yoe Updater Supported Machines ( RPI, beaglebone, C4, SAMA5D27 for now ) | ||
#INITRAMFS_IMAGE_BUNDLE = "1" | ||
# Use yoe-initramfs-image for initramfs | ||
#INITRAMFS_IMAGE = "yoe-initramfs-image" | ||
# Use kernel+initramfs image to boot | ||
#IMAGE_BOOT_FILES:remove = "${KERNEL_IMAGETYPE}" | ||
#IMAGE_BOOT_FILES:append = " ${KERNEL_IMAGETYPE}-initramfs-${MACHINE}.bin;${KERNEL_IMAGETYPE}" | ||
# Use default Device Tree | ||
IMAGE_BOOT_FILES:append = " tegra234-p3767-0003-p3768-0000-a0.dtb" | ||
|
||
#WKS_FILE:yoe = "yoe-sdimage.wks" | ||
#WKS_FILE:yoe:pn-yoe-installer-image = "yoe-installer.wks.in" | ||
|
||
# Use GNU objcopy for kernel with clang | ||
OBJCOPY:pn-linux-tegra:toolchain-clang = "${HOST_PREFIX}objcopy" | ||
OBJCOPY:pn-linux-jammy-nvidia-tegra:toolchain-clang = "${HOST_PREFIX}objcopy" | ||
|
||
# OE has moved to demand 5.15 minimum kernel but meta-tegra is at 5.10 for jetson-orin-nano | ||
OLDEST_KERNEL = "5.10" | ||
|
||
# Use gcc for the following recipes on jetson | ||
TOOLCHAIN:pn-edk2-firmware-tegra = "gcc" | ||
TOOLCHAIN:pn-optee-os-tadevkit = "gcc" | ||
TOOLCHAIN:pn-optee-nvsamples = "gcc" | ||
TOOLCHAIN:pn-optee-os = "gcc" | ||
TOOLCHAIN:pn-libgcc-for-nvcc = "gcc" | ||
TOOLCHAIN:pn-gcc-for-nvcc-runtime = "gcc" | ||
TOOLCHAIN:pn-opencv = "gcc" | ||
TOOLCHAIN:pn-efivar = "gcc" | ||
TOOLCHAIN:pn-qwt = "gcc" | ||
|
||
# Use gnu run time to keep cuda happy | ||
RUNTIME = "gnu" | ||
TC_CXX_RUNTIME = "gnu" | ||
|
||
# Needed for Running bitbake -ctestimage <image> | ||
#TEST_TARGET_IP = "10.0.0.36" | ||
#TEST_SERVER_IP = "10.0.0.13" | ||
#TEST_TARGET = "simpleremote" | ||
|
||
##################################################################### | ||
# add project specific configuration below this line | ||
##################################################################### | ||
#require conf/distro/include/lto.inc | ||
#DISTRO_FEATURES:append = " lto" | ||
# set max loadavg equal to nr of cpus, same at 1.0 on 1 cpu machine | ||
#PARALLEL_MAKE:append = " \ | ||
#-l ${@int(os.sysconf(os.sysconf_names['SC_NPROCESSORS_ONLN'])) * 150/100} \ | ||
#" | ||
|
||
# Setting a user/password in system | ||
#INHERIT += "extrausers" | ||
#EXTRA_USERS_PARAMS += "\ | ||
# useradd admin; \ | ||
# usermod -p '$(openssl passwd -6 myrootpassword)' admin; \ | ||
# usermod -a -G adm admin; \ | ||
# usermod -a -G video admin; \ | ||
# usermod -a -G audio admin; \ | ||
# usermod -a -G systemd-journal admin; \ | ||
#" | ||
#EXTRA_IMAGE_FEATURES:remove = "debug-tweaks" | ||
|
||
# For running oe-selftest uncomment below lines | ||
#USER_CLASSES:remove = "buildhistory" | ||
#PRSERV_HOST = "" |
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,24 @@ | ||
BBPATH = "${TOPDIR}" | ||
BBFILES ?= "" | ||
|
||
BBLAYERS = "\ | ||
${TOPDIR}/sources/meta-yoe \ | ||
\ | ||
${TOPDIR}/sources/meta-tegra \ | ||
\ | ||
${TOPDIR}/sources/meta-clang \ | ||
${TOPDIR}/sources/meta-qt6 \ | ||
\ | ||
${TOPDIR}/sources/meta-openembedded/meta-filesystems \ | ||
${TOPDIR}/sources/meta-openembedded/meta-gnome \ | ||
${TOPDIR}/sources/meta-openembedded/meta-initramfs \ | ||
${TOPDIR}/sources/meta-openembedded/meta-multimedia \ | ||
${TOPDIR}/sources/meta-openembedded/meta-networking \ | ||
${TOPDIR}/sources/meta-openembedded/meta-oe \ | ||
${TOPDIR}/sources/meta-openembedded/meta-perl \ | ||
${TOPDIR}/sources/meta-openembedded/meta-python \ | ||
${TOPDIR}/sources/meta-openembedded/meta-webserver \ | ||
${TOPDIR}/sources/meta-openembedded/meta-xfce \ | ||
\ | ||
${TOPDIR}/sources/poky/meta \ | ||
" |
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
26 files
Submodule meta-freescale
updated
9 files
Submodule meta-openembedded
updated
40 files
Submodule meta-qcom
updated
13 files
Submodule meta-qt6
updated
3 files
+1 −1 | coin/test-configs.inc | |
+50 −50 | recipes-qt/qt6/qt6-git.inc | |
+1 −0 | recipes-qt/squish/squish_7.2-20240124-0915.bb |
Submodule meta-raspberrypi
updated
10 files
Submodule meta-rockchip
updated
2 files
+1 −0 | recipes-graphics/mesa/mesa_%.bbappend | |
+2 −1 | recipes-kernel/linux/linux-torvalds-next_git.bb |
Submodule meta-ti
updated
11 files