-
-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature toradex am62 #893
base: master
Are you sure you want to change the base?
Feature toradex am62 #893
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
MACHINE = "verdin-am62" | ||
DISTRO = "yoe" | ||
# "yoe-<libc>-<init-system>-<windowing-system>" | ||
YOE_PROFILE = "yoe-glibc-systemd-wayland" | ||
|
||
# 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 ( LVDS ) | ||
|
||
TOOLCHAIN:pn-trusted-firmware-a = "gcc" | ||
|
||
# Needed for Running bitbake -ctestimage <image> | ||
TEST_TARGET_IP = "10.0.0.36" | ||
TEST_SERVER_IP = "10.0.0.13" | ||
TEST_TARGET = "simpleremote" | ||
|
||
IMG_VERSION = "0.0.1" | ||
##################################################################### | ||
# add project specific configuration below this line | ||
##################################################################### | ||
#require conf/distro/include/lto.inc | ||
#DISTRO_FEATURES:append = " lto" | ||
|
||
# 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 = "" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
BBPATH = "${TOPDIR}" | ||
BBFILES ?= "" | ||
|
||
BBLAYERS = "\ | ||
${TOPDIR}/sources/meta-yoe \ | ||
\ | ||
${TOPDIR}/sources/meta-toradex-bsp-common \ | ||
${TOPDIR}/sources/meta-toradex-ti \ | ||
${TOPDIR}/sources/meta-ti/meta-ti-bsp \ | ||
${TOPDIR}/sources/meta-ti/meta-ti-extras \ | ||
${TOPDIR}/sources/meta-arm/meta-arm \ | ||
${TOPDIR}/sources/meta-arm/meta-arm-toolchain \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do we need the arm toolchain layer ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Appears meta-ti-bsp depends on it:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. thats There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
\ | ||
${TOPDIR}/sources/meta-clang \ | ||
${TOPDIR}/sources/meta-elm-binary \ | ||
${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 \ | ||
" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what error do we see with clang ? tf-a is supposed to work with clang upstream so we can report it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.