├── .github └── workflows │ ├── free-disk-space │ └── action.yml │ ├── link-check.yml │ └── main.yml ├── .gitignore ├── .gitlab-ci.yml ├── .lychee.toml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING.MIT ├── Kconfig ├── MAINTAINERS ├── README.md ├── doc ├── README.md ├── build-config.md ├── fragment-catalog.md ├── layer-architecture.md ├── maintenance.md ├── qemu.md ├── sdk.md └── swupdate.md ├── isar-patches └── 0001-image-Fix-construction-of-do_image_tools-dependencie.patch ├── kas-container ├── kas-docker ├── kas-iot2050-boot.yml ├── kas-iot2050-example.yml ├── kas-iot2050-fwu-package.yml ├── kas-iot2050-qemu.yml ├── kas-iot2050-swupdate.yml ├── kas ├── iot2050.yml └── opt │ ├── debian-mirror.yml │ ├── docker.yml │ ├── example.yml │ ├── hailo.yml │ ├── lxde.yml │ ├── node-red.yml │ ├── otpcmd │ ├── key-provision-3keys.yml │ ├── key-provision-enabling-only.yml │ ├── key-provision-keys-only.yml │ ├── key-provision.yml │ ├── key-switch-2to3.yml │ ├── key-switch.yml │ └── otp.yml │ ├── package-lock.yml │ ├── preempt-rt.yml │ ├── rpmb-setup.yml │ ├── sdk.yml │ ├── secure-boot.yml │ ├── sm.yml │ └── upstream.yml ├── meta-example ├── README.md ├── conf │ ├── distro │ │ └── iot2050-example.conf │ ├── include │ │ └── iot2050-features.inc │ └── layer.conf ├── recipes-app │ ├── board-conf-tools │ │ ├── board-conf-tools_1.0.2.bb │ │ └── files │ │ │ ├── board-bootup-configuration.service │ │ │ ├── board-conf-tools │ │ │ ├── board-bootup-conf.py │ │ │ ├── iot2050setup.py │ │ │ └── json_ops │ │ │ │ ├── __init__.py │ │ │ │ ├── board-configuration.json │ │ │ │ └── json_ops.py │ │ │ └── postinst │ ├── iot2050-efivarfs-helper │ │ ├── files │ │ │ └── iot2050-efivarfs-helper.tmpl │ │ └── iot2050-efivarfs-helper_1.0.0.bb │ ├── iot2050-firmware-update │ │ ├── files │ │ │ ├── iot2050-firmware-update.tmpl │ │ │ └── update.conf.json.tmpl │ │ └── iot2050-firmware-update_1.0.1.bb │ └── tcf-agent │ │ ├── files │ │ └── debian │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── rules │ │ │ ├── tcf-agent.install │ │ │ └── tcf-agent.service │ │ └── tcf-agent.bb ├── recipes-bsp │ └── patch-u-boot-env │ │ ├── files │ │ ├── patch-u-boot-env.config │ │ ├── patch-u-boot-env.service │ │ └── patch-u-boot-env.sh │ │ └── patch-u-boot-env_0.1.bb ├── recipes-core │ ├── images │ │ ├── iot2050-image-example.bb │ │ ├── iot2050-image-swu-example.bb │ │ └── iot2050-package-selections.inc │ ├── install-on-emmc │ │ ├── files │ │ │ ├── install-on-emmc-on-first-boot.service │ │ │ ├── install-on-emmc.sh │ │ │ └── postinst │ │ └── install-on-emmc_1.1.bb │ ├── iot2050-nm-settings │ │ ├── files │ │ │ ├── 10-globally-managed-devices.conf │ │ │ ├── cellular-4g │ │ │ ├── eno1-default │ │ │ └── postinst │ │ └── iot2050-nm-settings_1.0.0.bb │ ├── lxde-touch │ │ ├── files │ │ │ └── postinst │ │ └── lxde-touch_1.0.0.bb │ ├── swupdate-complete-update-helper │ │ ├── files │ │ │ └── complete_update.sh │ │ └── swupdate-complete-update-helper_1.0.0.bb │ ├── swupdate-config │ │ ├── files │ │ │ └── swupdate.cfg │ │ └── swupdate-config_%.bbappend │ └── watchdog │ │ ├── files │ │ └── 99-watchdog.conf │ │ └── iot2050-watchdog.bb ├── recipes-devtools │ └── firmware-update-package │ │ ├── files │ │ ├── iot2050-generate-fwu-tarball.sh │ │ └── update.conf.json.tmpl │ │ └── firmware-update-package_0.1.bb └── wic │ ├── iot2050-swu-secure.wks.in │ └── iot2050-swu.wks.in ├── meta-hailo ├── MAINTAINERS.md ├── README.md ├── conf │ └── layer.conf ├── hailo_advanced.png ├── hailo_sm.png ├── recipes-app │ ├── hailort │ │ ├── files │ │ │ ├── debian │ │ │ │ ├── control │ │ │ │ ├── hailort.install │ │ │ │ ├── hailort.service │ │ │ │ ├── hailortcli.install │ │ │ │ ├── libgsthailo-dev.install │ │ │ │ ├── libgsthailo.install │ │ │ │ ├── libhailort-dev.install │ │ │ │ ├── libhailort.install │ │ │ │ ├── not-installed │ │ │ │ ├── python-numpy.pref │ │ │ │ ├── python3-hailort.install │ │ │ │ └── rules │ │ │ └── patches │ │ │ │ ├── 0001-do-not-use-spdlog-formatting-internals.patch │ │ │ │ ├── 0002-use-distro-version-of-packages-if-possible.patch │ │ │ │ ├── 0003-install-independent-of-build-target.patch │ │ │ │ ├── 0004-install-python-bindings-into-dist-packages.patch │ │ │ │ └── 0005-Fix-cross-compilation-issue-for-pybuild.patch │ │ └── hailort_4.18.0.bb │ └── tappas │ │ ├── README.md │ │ ├── detection_pipeline.gif │ │ ├── files │ │ ├── debian │ │ │ ├── control │ │ │ ├── hailo-post-processes.install │ │ │ ├── libgsthailotools.install │ │ │ ├── not-installed │ │ │ ├── rules │ │ │ ├── tappas-apps.install │ │ │ └── tappas-tracers.install │ │ └── patches │ │ │ ├── 0001-tappas-Adapt-tappas-apps-for-compatibility-with-meta.patch │ │ │ └── 0002-Do-not-install-binaries-without-clear-license-clarif.patch │ │ ├── lpr_pipeline.gif │ │ ├── multistream_detection.gif │ │ └── tappas_3.29.1.bb ├── recipes-bsp │ └── hailo-firmware │ │ └── hailo-firmware_4.18.0.bb ├── recipes-core │ └── images │ │ └── meta-hailo-packages.inc ├── recipes-kernel │ └── hailo-pci │ │ ├── files │ │ └── 0001-Fix-the-prototypes-building-issue.patch │ │ └── hailo-pci_4.18.0.bb └── recipes-python │ ├── python-numpy │ ├── files │ │ └── debian │ │ │ ├── control │ │ │ └── rules │ └── python-numpy_1.23.3.bb │ └── python-verboselogs │ ├── files │ └── debian │ │ ├── control │ │ └── rules │ └── python-verboselogs_1.7.bb ├── meta-node-red ├── README.md ├── classes │ ├── node-red-module.bbclass │ └── npm.bbclass ├── conf │ └── layer.conf ├── recipes-app │ ├── mindconnect-node-red-contrib-mindconnect │ │ ├── files │ │ │ └── npm-shrinkwrap.json │ │ └── mindconnect-node-red-contrib-mindconnect_3.12.1.bb │ ├── node-red-contrib-modbus │ │ ├── files │ │ │ └── npm-shrinkwrap.json │ │ └── node-red-contrib-modbus_5.44.1.bb │ ├── node-red-contrib-opcua │ │ ├── files │ │ │ └── npm-shrinkwrap.json │ │ └── node-red-contrib-opcua_0.2.342.bb │ ├── node-red-contrib-s7 │ │ ├── files │ │ │ └── npm-shrinkwrap.json │ │ └── node-red-contrib-s7_3.1.1.bb │ ├── node-red-dashboard │ │ ├── files │ │ │ └── npm-shrinkwrap.json │ │ └── node-red-dashboard_3.6.6.bb │ ├── node-red-gpio │ │ ├── files │ │ │ ├── 0001-mraa-gpio-Change-text-x-red-to-text-html.patch │ │ │ ├── 0002-mraa-gpio-Pass-settings-from-js-to-html.patch │ │ │ ├── 0003-mraa-gpio-din-Make-D14-D19-IOT2050-only.patch │ │ │ ├── 0004-mraa-gpio-din-Fix-the-for-attribute-of-lables.patch │ │ │ ├── 0005-mraa-gpio-dout-Add-D14-D19-for-IOT2050.patch │ │ │ ├── 0006-mraa-gpio-Make-led-node-IOT2050-only.patch │ │ │ ├── 0007-mraa-gpio-Fix-led-label-in-the-flow-editor.patch │ │ │ ├── 0008-mraa-gpio-Add-support-for-IOT2050-SM.patch │ │ │ └── 0009-mraa-gpio-pwm-Set-pin-options-according-to-board-typ.patch │ │ └── node-red-gpio_0.4.0+git.bb │ ├── node-red-node-random │ │ ├── files │ │ │ └── npm-shrinkwrap.json │ │ └── node-red-node-random_0.4.1.bb │ ├── node-red-node-serialport │ │ ├── files │ │ │ └── npm-shrinkwrap.json │ │ └── node-red-node-serialport_2.0.3.bb │ ├── node-red-node-sqlite │ │ ├── files │ │ │ └── npm-shrinkwrap.json │ │ └── node-red-node-sqlite_1.1.1.bb │ ├── node-red-preinstalled-nodes │ │ └── node-red-preinstalled-nodes_0.1.bb │ └── node-red │ │ ├── files │ │ ├── node-red.service.tmpl │ │ └── npm-shrinkwrap.json │ │ ├── node-red-home.inc │ │ └── node-red_4.0.9.bb └── recipes-core │ └── images │ └── meta-node-red-packages.inc ├── meta-sm ├── README.md ├── conf │ └── layer.conf ├── recipes-app │ ├── iot2050-conf-webui │ │ ├── README.md │ │ ├── files │ │ │ ├── .eslintrc.yml │ │ │ ├── iot2050-conf-webui.service │ │ │ ├── jsconfig.json │ │ │ ├── next.config.js │ │ │ ├── npm-shrinkwrap.json │ │ │ ├── npm-shrinkwrap.json.nodev │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── app │ │ │ │ ├── deploy │ │ │ │ │ └── route.js │ │ │ │ ├── favicon.ico │ │ │ │ ├── icon-siemens.svg │ │ │ │ ├── layout.js │ │ │ │ ├── page.js │ │ │ │ ├── retrieve │ │ │ │ │ └── route.js │ │ │ │ └── smconf │ │ │ │ │ └── page.js │ │ │ │ ├── components │ │ │ │ ├── ConfigEntry │ │ │ │ │ ├── CheckConfig.js │ │ │ │ │ ├── ConfigGroupLabel.js │ │ │ │ │ ├── SelectionConfig.js │ │ │ │ │ └── SliderConfig.js │ │ │ │ ├── ExtendedModules │ │ │ │ │ ├── SM1221_8DI │ │ │ │ │ │ └── SM1221with8DIConf.js │ │ │ │ │ ├── SM1223 │ │ │ │ │ │ ├── SM1223Conf.js │ │ │ │ │ │ ├── SM1223_AC_DI8_DQ8RLY_Conf.js │ │ │ │ │ │ └── SM1223_DC_DI16_DQ16RLY_Conf.js │ │ │ │ │ ├── SM1231_AI │ │ │ │ │ │ ├── SM1231AIConf.js │ │ │ │ │ │ ├── SM1231with4AIConf.js │ │ │ │ │ │ └── SM1231with8AIConf.js │ │ │ │ │ ├── SM1231_RTD │ │ │ │ │ │ ├── SM1231_4RTDConf.js │ │ │ │ │ │ ├── SM1231_8RTDConf.js │ │ │ │ │ │ └── SM1231_RTDConf.js │ │ │ │ │ ├── SM1238_EM480VAC │ │ │ │ │ │ └── SM1238EM480VACConf.js │ │ │ │ │ └── SMSensDI │ │ │ │ │ │ └── SMSensDIConf.js │ │ │ │ ├── ModuleInfo.js │ │ │ │ ├── SlotInfo.js │ │ │ │ └── ThemeRegistry │ │ │ │ │ ├── EmotionCache.js │ │ │ │ │ ├── ThemeRegistry.js │ │ │ │ │ ├── fonts │ │ │ │ │ ├── SiemensSans_Prof_Bold.woff2 │ │ │ │ │ ├── SiemensSans_Prof_BoldItalic.woff2 │ │ │ │ │ ├── SiemensSans_Prof_Italic.woff2 │ │ │ │ │ └── SiemensSans_Prof_Roman.woff2 │ │ │ │ │ └── theme.js │ │ │ │ └── lib │ │ │ │ ├── eioService │ │ │ │ └── eioService.js │ │ │ │ ├── gRPC │ │ │ │ └── iot2050-eio.proto │ │ │ │ ├── smConfig │ │ │ │ ├── ConfTextConverter.js │ │ │ │ └── smConfig.js │ │ │ │ └── uiString │ │ │ │ ├── SM1221_8DI.json │ │ │ │ ├── SM1223.json │ │ │ │ ├── SM1231_AI.json │ │ │ │ ├── SM1231_RTD.json │ │ │ │ └── SM1238EM480VAC.json │ │ └── iot2050-conf-webui_1.0.1.bb │ ├── iot2050-eio-manager │ │ ├── README.md │ │ ├── files │ │ │ ├── config-schema │ │ │ │ ├── schema-na.yaml │ │ │ │ ├── schema-sm-config.yaml │ │ │ │ ├── schema-sm-sens-di.yaml │ │ │ │ ├── schema-sm1221-8di.yaml │ │ │ │ ├── schema-sm1223-di-dq.yaml │ │ │ │ ├── schema-sm1231-ai.yaml │ │ │ │ ├── schema-sm1231-rtd.yaml │ │ │ │ └── schema-sm1238-em-480vac.yaml │ │ │ ├── config-template │ │ │ │ ├── mlfb-6ES7221-1BF32-0XB0.yaml │ │ │ │ ├── mlfb-6ES7223-1PL32-0XB0.yaml │ │ │ │ ├── mlfb-6ES7223-1QH32-0XB0.yaml │ │ │ │ ├── mlfb-6ES7231-4HD32-0XB0.yaml │ │ │ │ ├── mlfb-6ES7231-4HF32-0XB0.yaml │ │ │ │ ├── mlfb-6ES7231-5PD32-0XB0.yaml │ │ │ │ ├── mlfb-6ES7231-5PF32-0XB0.yaml │ │ │ │ ├── mlfb-6ES7238-5XA32-0XB0.yaml │ │ │ │ ├── mlfb-6ES7647-0CM00-1AA2.yaml │ │ │ │ ├── mlfb-NA.yaml │ │ │ │ └── sm-config-example.yaml │ │ │ ├── gRPC │ │ │ │ └── EIOManager │ │ │ │ │ ├── iot2050-eio.proto │ │ │ │ │ ├── iot2050_eio_pb2.py │ │ │ │ │ ├── iot2050_eio_pb2.pyi │ │ │ │ │ └── iot2050_eio_pb2_grpc.py │ │ │ ├── iot2050-eio-cli.py │ │ │ ├── iot2050-eio-fwu-monitor.service │ │ │ ├── iot2050-eio-service.py │ │ │ ├── iot2050-eio-time-syncing.py │ │ │ ├── iot2050-eio-time-syncing.service │ │ │ ├── iot2050-eiod.service │ │ │ ├── iot2050_eio_config.py │ │ │ ├── iot2050_eio_event.py │ │ │ ├── iot2050_eio_fwu.py │ │ │ ├── iot2050_eio_fwu_monitor.py │ │ │ └── iot2050_eio_global.py │ │ └── iot2050-eio-manager_1.0.1.bb │ ├── iot2050-eiofsd │ │ ├── files │ │ │ ├── bin │ │ │ │ ├── .gitignore │ │ │ │ └── README.md │ │ │ └── iot2050-eiofsd.service │ │ └── iot2050-eiofsd_1.0.0.bb │ ├── iot2050-event-record │ │ ├── README.md │ │ ├── WATCHDOG.md │ │ ├── files │ │ │ ├── gRPC │ │ │ │ ├── EIOManager │ │ │ │ └── EventInterface │ │ │ │ │ ├── iot2050-event.proto │ │ │ │ │ ├── iot2050_event_pb2.py │ │ │ │ │ ├── iot2050_event_pb2.pyi │ │ │ │ │ └── iot2050_event_pb2_grpc.py │ │ │ ├── iot2050-event-record.conf │ │ │ ├── iot2050-event-record.py │ │ │ ├── iot2050-event-record.service │ │ │ ├── iot2050-event-serve.py │ │ │ ├── iot2050-event-serve.service │ │ │ ├── iot2050_event.py │ │ │ └── iot2050_event_global.py │ │ └── iot2050-event-record_1.0.0.bb │ └── iot2050-module-firmware-update │ │ ├── files │ │ └── iot2050-module-firmware-update.tmpl │ │ └── iot2050-module-firmware-update_1.0.0.bb └── recipes-core │ ├── images │ └── meta-sm-packages.inc │ └── iot2050-proximity-driver │ ├── files │ └── src │ │ ├── Makefile │ │ ├── com.siemens.iot2050.pxmt.conf │ │ ├── dbus-service.c │ │ ├── dbus-service.h │ │ ├── iot2050-proximity-driver.service │ │ ├── main.c │ │ ├── sensor.c │ │ └── sensor.h │ └── iot2050-proximity-driver_1.0.bb ├── meta ├── README.md ├── classes │ └── git-timestamp.bbclass ├── conf │ ├── distro │ │ └── iot2050-debian.conf │ ├── layer.conf │ └── machine │ │ ├── iot2050-qemu.conf │ │ └── iot2050.conf ├── recipes-app │ ├── mraa │ │ ├── files │ │ │ ├── 0001-gpio-Fix-JS-binding-regarding-interrupt-injections.patch │ │ │ ├── 0002-common-increase-pin-name-size.patch │ │ │ ├── 0003-iot2050-add-debugfs-pinmux-support.patch │ │ │ ├── 0004-iot2050-Add-support-for-the-new-IOT2050-SM-variant.patch │ │ │ ├── 0005-python-binding-Fix-Python-3.13-compatibility.patch │ │ │ ├── 0006-javascript-update-C-standard-to-C-17-for-compatibili.patch │ │ │ ├── 0007-fix-iot2050-Correct-parent-IDs-for-PWM-pins.patch │ │ │ ├── 0008-fix-GPIOs-that-number-is-larger-than-512-cannot-trig.patch │ │ │ └── rules │ │ └── mraa_2.2.0+git20220805.8b1c5493.bb │ └── switchserialmode │ │ ├── files │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── gpio_helper.c │ │ │ ├── gpio_helper.h │ │ │ ├── serial │ │ │ ├── cp2102n.c │ │ │ └── omap_8250.c │ │ │ ├── switchserialmode.c │ │ │ ├── switchserialmode.h │ │ │ └── transceiver │ │ │ └── sp339e.c │ │ └── switchserialmode_1.0.1.bb ├── recipes-bsp │ ├── k3-rti-wdt │ │ ├── files │ │ │ └── rules │ │ └── k3-rti-wdt_1.2.bb │ ├── optee-client │ │ └── optee-client-iot2050_4.7.0.bb │ ├── optee-ftpm │ │ ├── files │ │ │ └── 0001-fTPM-use-TA_FLAG_DEVICE_ENUM_SUPP-for-kernels-withou.patch │ │ └── optee-ftpm-iot2050_4.7+v1.62r1-48-ge9fc7b8.bb │ ├── optee-os │ │ ├── files │ │ │ └── 0001-plat-k3-main-Add-platform-RNG-initialization-for-K3-.patch │ │ ├── optee-os-iot2050_4.7.0.bb │ │ ├── optee-os-iot2050_4.7.0.inc │ │ └── optee-os-tadevkit-iot2050_4.7.0.bb │ ├── secure-boot-otp-provisioning │ │ ├── README.md │ │ ├── files │ │ │ ├── its │ │ │ │ ├── include │ │ │ │ │ ├── key-provision-bmpk.its │ │ │ │ │ └── key-provision-mpk-smpk.its │ │ │ │ ├── key-provision-3keys.its │ │ │ │ ├── key-provision-enabling-only.its │ │ │ │ ├── key-provision-keys-only.its │ │ │ │ ├── key-provision.its │ │ │ │ └── key-switch.its │ │ │ ├── keys │ │ │ │ ├── custBmpk.crt │ │ │ │ ├── custBmpk.pem │ │ │ │ ├── custMpk.crt │ │ │ │ ├── custMpk.pem │ │ │ │ ├── custSmpk.crt │ │ │ │ └── custSmpk.pem │ │ │ ├── make-otpcmd.sh │ │ │ └── rules.tmpl │ │ └── secure-boot-otp-provisioning_0.1.bb │ ├── ti-pruss-firmware │ │ └── ti-pruss-firmware_10.00.06.bb │ ├── trusted-firmware-a │ │ └── trusted-firmware-a-iot2050_2.8.35.bb │ └── u-boot │ │ ├── README.md │ │ ├── back_iot2050.png │ │ ├── files │ │ ├── 0001-arm-dts-iot2050-Add-overlay-for-DMA-isolation-for-de.patch │ │ ├── 0002-board-siemens-iot2050-Generalize-overlay_prepare.patch │ │ ├── 0003-board-siemens-iot2050-Allow-to-enable-and-adjust-res.patch │ │ ├── 0004-arm-dts-iot2050-Enforce-DMA-isolation-for-devices-be.patch │ │ ├── 0005-remoteproc-k3-add-config-to-gate-R5F-firmware-authen.patch │ │ ├── fw_env.config │ │ ├── keys │ │ │ ├── custMpk.crt │ │ │ ├── custMpk.key │ │ │ └── custMpk.pem │ │ ├── otpcmd.cfg │ │ ├── prebuild │ │ │ ├── seboot_pg1.bin │ │ │ └── seboot_pg2.bin │ │ ├── rpmb-setup.cfg │ │ ├── rules.tmpl │ │ └── secure-boot.cfg │ │ ├── u-boot-iot2050.inc │ │ └── u-boot-iot2050_2025.04.bb ├── recipes-core │ ├── images │ │ ├── iot2050-image-base.bb │ │ └── meta-packages.inc │ ├── iot2050-base-packages │ │ ├── files │ │ │ ├── 20-assign-ethernet-names.rules │ │ │ ├── 20-create-symbolic-link-for-serial-port.rules │ │ │ ├── postinst.tmpl │ │ │ └── terminal_resize.sh │ │ └── iot2050-base-packages_1.0.0.bb │ ├── iot2050-firmware │ │ └── iot2050-firmware_0.1.bb │ ├── iot2050-status-led │ │ ├── files │ │ │ ├── postinst │ │ │ └── status-led.service │ │ └── iot2050-status-led_1.0.0.bb │ ├── regen-rootfs-uuid │ │ ├── files │ │ │ ├── postinst │ │ │ ├── regen-rootfs-uuid-on-first-boot.service │ │ │ └── regen-rootfs-uuid.sh │ │ └── regen-rootfs-uuid_1.0.bb │ └── ssh-root-login │ │ ├── files │ │ └── postinst │ │ └── ssh-root-login_1.0.0.bb ├── recipes-devtools │ ├── sbuild-chroot │ │ └── sbuild-chroot-target-npm.bb │ ├── secure-boot-secrets │ │ ├── files │ │ │ ├── custMpk.crt │ │ │ └── custMpk.pem │ │ └── secure-boot-custmpk_0.1.bb │ └── swupdate-certificates │ │ ├── files │ │ ├── custMpk.crt │ │ └── custMpk.pem │ │ ├── swupdate-certificates-custmpk_0.1.bb │ │ └── swupdate-certificates-key-custmpk_0.1.bb ├── recipes-initramfs │ └── iot2050-initramfs │ │ └── iot2050-initramfs_0.1.bb ├── recipes-kernel │ └── linux │ │ ├── files │ │ ├── iot2050-rt.cfg │ │ ├── iot2050_defconfig_base │ │ ├── iot2050_defconfig_extra.cfg │ │ ├── iot2050_defconfig_hailo.cfg │ │ ├── iot2050_defconfig_secure.cfg │ │ └── patches │ │ │ ├── 0001-irqchip-irq-pruss-intc-Fix-enabling-of-intc-events.patch │ │ │ ├── 0002-irqchip-irq-pruss-intc-Fix-listed-IRQ-type-in-proc-i.patch │ │ │ ├── 0003-irqchip-irq-pruss-intc-Fix-processing-of-IEP-interru.patch │ │ │ ├── 0004-dmaengine-ti-k3-udma-glue-do-not-create-glue-dma-dev.patch │ │ │ ├── 0005-mmc-sdhci_am654-Disable-data-error-interrupts-while-.patch │ │ │ ├── 0006-PCI-keystone-Convert-to-using-hierarchy-domain-for-l.patch │ │ │ ├── 0007-PCI-keystone-Add-PCI-legacy-interrupt-support-for-AM.patch │ │ │ ├── 0008-arm64-dts-ti-k3-am65-main-Add-properties-to-support-.patch │ │ │ ├── 0009-firmware-ti_sci-Update-ti_sci_msg_req_reboot-to-incl.patch │ │ │ ├── 0010-WIP-arm64-dts-ti-iot2050-Add-node-for-generic-spidev.patch │ │ │ ├── 0011-arm64-dts-ti-Indicate-the-green-light-is-off-when-pa.patch │ │ │ ├── 0012-HACK-setting-the-RJ45-port-led-behavior.patch │ │ │ ├── 0013-WIP-feat-extend-led-panic-indicator-on-and-off.patch │ │ │ ├── 0014-WIP-dts-iot2050-Add-spidev-for-IOT2050-SM.patch │ │ │ ├── 0015-dt-bindings-soc-ti-Add-AM65-peripheral-virtualizatio.patch │ │ │ ├── 0016-soc-ti-Add-IOMPU-like-PVU-driver.patch │ │ │ ├── 0017-dt-bindings-PCI-ti-am65-Extend-for-use-with-PVU.patch │ │ │ ├── 0018-arm64-dts-ti-k3-am65-main-Add-VMAP-registers-to-PCI-.patch │ │ │ ├── 0019-PCI-keystone-Add-supported-for-PVU-based-DMA-isolati.patch │ │ │ ├── 0020-arm64-dts-ti-iot2050-Enforce-DMA-isolation-for-devic.patch │ │ │ ├── 0021-swiotlb-Make-IO_TLB_SEGSIZE-configurable.patch │ │ │ ├── 0022-arm64-dts-ti-iot2050-Add-support-for-dts-overlay-for.patch │ │ │ ├── 0023-spi-cadence-qspi-Workaround-potential-flash-writing-.patch │ │ │ ├── 0024-dts-Enable-ehrpwm-nodes-to-support-PWM-feature.patch │ │ │ ├── 0025-dts-iot2050-Fix-DP-configuration-failure-due-to-inco.patch │ │ │ ├── 0025-epoll-fix-eventpoll-read-lock-not-writer-fair-in-preemt-rt.patch │ │ │ ├── 0026-drm-tidss-Use-the-crtc_-timings-when-programming-the.patch │ │ │ └── 0027-Revert-drm-tidss-Update-encoder-bridge-chain-connect.patch │ │ ├── linux-iot2050-6.12.inc │ │ ├── linux-iot2050-rt_6.12.46-cip8.bb │ │ ├── linux-iot2050_6.12.46-cip8.bb │ │ └── linux-iot2050_6.x-upstream.bb └── wic │ └── iot2050.wks.in └── scripts └── host └── start-qemu-iot2050.sh /.github/workflows/free-disk-space/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/.github/workflows/free-disk-space/action.yml -------------------------------------------------------------------------------- /.github/workflows/link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/.github/workflows/link-check.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | isar/ 3 | /cip-core 4 | .config.yaml* 5 | .kas_shell_history 6 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.lychee.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/.lychee.toml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/COPYING.MIT -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/Kconfig -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/README.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/build-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/doc/build-config.md -------------------------------------------------------------------------------- /doc/fragment-catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/doc/fragment-catalog.md -------------------------------------------------------------------------------- /doc/layer-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/doc/layer-architecture.md -------------------------------------------------------------------------------- /doc/maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/doc/maintenance.md -------------------------------------------------------------------------------- /doc/qemu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/doc/qemu.md -------------------------------------------------------------------------------- /doc/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/doc/sdk.md -------------------------------------------------------------------------------- /doc/swupdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/doc/swupdate.md -------------------------------------------------------------------------------- /isar-patches/0001-image-Fix-construction-of-do_image_tools-dependencie.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/isar-patches/0001-image-Fix-construction-of-do_image_tools-dependencie.patch -------------------------------------------------------------------------------- /kas-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas-container -------------------------------------------------------------------------------- /kas-docker: -------------------------------------------------------------------------------- 1 | kas-container -------------------------------------------------------------------------------- /kas-iot2050-boot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas-iot2050-boot.yml -------------------------------------------------------------------------------- /kas-iot2050-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas-iot2050-example.yml -------------------------------------------------------------------------------- /kas-iot2050-fwu-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas-iot2050-fwu-package.yml -------------------------------------------------------------------------------- /kas-iot2050-qemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas-iot2050-qemu.yml -------------------------------------------------------------------------------- /kas-iot2050-swupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas-iot2050-swupdate.yml -------------------------------------------------------------------------------- /kas/iot2050.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/iot2050.yml -------------------------------------------------------------------------------- /kas/opt/debian-mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/debian-mirror.yml -------------------------------------------------------------------------------- /kas/opt/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/docker.yml -------------------------------------------------------------------------------- /kas/opt/example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/example.yml -------------------------------------------------------------------------------- /kas/opt/hailo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/hailo.yml -------------------------------------------------------------------------------- /kas/opt/lxde.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/lxde.yml -------------------------------------------------------------------------------- /kas/opt/node-red.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/node-red.yml -------------------------------------------------------------------------------- /kas/opt/otpcmd/key-provision-3keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/otpcmd/key-provision-3keys.yml -------------------------------------------------------------------------------- /kas/opt/otpcmd/key-provision-enabling-only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/otpcmd/key-provision-enabling-only.yml -------------------------------------------------------------------------------- /kas/opt/otpcmd/key-provision-keys-only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/otpcmd/key-provision-keys-only.yml -------------------------------------------------------------------------------- /kas/opt/otpcmd/key-provision.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/otpcmd/key-provision.yml -------------------------------------------------------------------------------- /kas/opt/otpcmd/key-switch-2to3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/otpcmd/key-switch-2to3.yml -------------------------------------------------------------------------------- /kas/opt/otpcmd/key-switch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/otpcmd/key-switch.yml -------------------------------------------------------------------------------- /kas/opt/otpcmd/otp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/otpcmd/otp.yml -------------------------------------------------------------------------------- /kas/opt/package-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/package-lock.yml -------------------------------------------------------------------------------- /kas/opt/preempt-rt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/preempt-rt.yml -------------------------------------------------------------------------------- /kas/opt/rpmb-setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/rpmb-setup.yml -------------------------------------------------------------------------------- /kas/opt/sdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/sdk.yml -------------------------------------------------------------------------------- /kas/opt/secure-boot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/secure-boot.yml -------------------------------------------------------------------------------- /kas/opt/sm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/sm.yml -------------------------------------------------------------------------------- /kas/opt/upstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/kas/opt/upstream.yml -------------------------------------------------------------------------------- /meta-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/README.md -------------------------------------------------------------------------------- /meta-example/conf/distro/iot2050-example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/conf/distro/iot2050-example.conf -------------------------------------------------------------------------------- /meta-example/conf/include/iot2050-features.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/conf/include/iot2050-features.inc -------------------------------------------------------------------------------- /meta-example/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/conf/layer.conf -------------------------------------------------------------------------------- /meta-example/recipes-app/board-conf-tools/board-conf-tools_1.0.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/board-conf-tools/board-conf-tools_1.0.2.bb -------------------------------------------------------------------------------- /meta-example/recipes-app/board-conf-tools/files/board-bootup-configuration.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/board-conf-tools/files/board-bootup-configuration.service -------------------------------------------------------------------------------- /meta-example/recipes-app/board-conf-tools/files/board-conf-tools/board-bootup-conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/board-conf-tools/files/board-conf-tools/board-bootup-conf.py -------------------------------------------------------------------------------- /meta-example/recipes-app/board-conf-tools/files/board-conf-tools/iot2050setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/board-conf-tools/files/board-conf-tools/iot2050setup.py -------------------------------------------------------------------------------- /meta-example/recipes-app/board-conf-tools/files/board-conf-tools/json_ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-example/recipes-app/board-conf-tools/files/board-conf-tools/json_ops/board-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/board-conf-tools/files/board-conf-tools/json_ops/board-configuration.json -------------------------------------------------------------------------------- /meta-example/recipes-app/board-conf-tools/files/board-conf-tools/json_ops/json_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/board-conf-tools/files/board-conf-tools/json_ops/json_ops.py -------------------------------------------------------------------------------- /meta-example/recipes-app/board-conf-tools/files/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/board-conf-tools/files/postinst -------------------------------------------------------------------------------- /meta-example/recipes-app/iot2050-efivarfs-helper/files/iot2050-efivarfs-helper.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/iot2050-efivarfs-helper/files/iot2050-efivarfs-helper.tmpl -------------------------------------------------------------------------------- /meta-example/recipes-app/iot2050-efivarfs-helper/iot2050-efivarfs-helper_1.0.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/iot2050-efivarfs-helper/iot2050-efivarfs-helper_1.0.0.bb -------------------------------------------------------------------------------- /meta-example/recipes-app/iot2050-firmware-update/files/iot2050-firmware-update.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/iot2050-firmware-update/files/iot2050-firmware-update.tmpl -------------------------------------------------------------------------------- /meta-example/recipes-app/iot2050-firmware-update/files/update.conf.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/iot2050-firmware-update/files/update.conf.json.tmpl -------------------------------------------------------------------------------- /meta-example/recipes-app/iot2050-firmware-update/iot2050-firmware-update_1.0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/iot2050-firmware-update/iot2050-firmware-update_1.0.1.bb -------------------------------------------------------------------------------- /meta-example/recipes-app/tcf-agent/files/debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /meta-example/recipes-app/tcf-agent/files/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/tcf-agent/files/debian/control -------------------------------------------------------------------------------- /meta-example/recipes-app/tcf-agent/files/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/tcf-agent/files/debian/rules -------------------------------------------------------------------------------- /meta-example/recipes-app/tcf-agent/files/debian/tcf-agent.install: -------------------------------------------------------------------------------- 1 | usr/sbin/* 2 | -------------------------------------------------------------------------------- /meta-example/recipes-app/tcf-agent/files/debian/tcf-agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/tcf-agent/files/debian/tcf-agent.service -------------------------------------------------------------------------------- /meta-example/recipes-app/tcf-agent/tcf-agent.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-app/tcf-agent/tcf-agent.bb -------------------------------------------------------------------------------- /meta-example/recipes-bsp/patch-u-boot-env/files/patch-u-boot-env.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-bsp/patch-u-boot-env/files/patch-u-boot-env.config -------------------------------------------------------------------------------- /meta-example/recipes-bsp/patch-u-boot-env/files/patch-u-boot-env.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-bsp/patch-u-boot-env/files/patch-u-boot-env.service -------------------------------------------------------------------------------- /meta-example/recipes-bsp/patch-u-boot-env/files/patch-u-boot-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-bsp/patch-u-boot-env/files/patch-u-boot-env.sh -------------------------------------------------------------------------------- /meta-example/recipes-bsp/patch-u-boot-env/patch-u-boot-env_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-bsp/patch-u-boot-env/patch-u-boot-env_0.1.bb -------------------------------------------------------------------------------- /meta-example/recipes-core/images/iot2050-image-example.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/images/iot2050-image-example.bb -------------------------------------------------------------------------------- /meta-example/recipes-core/images/iot2050-image-swu-example.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/images/iot2050-image-swu-example.bb -------------------------------------------------------------------------------- /meta-example/recipes-core/images/iot2050-package-selections.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/images/iot2050-package-selections.inc -------------------------------------------------------------------------------- /meta-example/recipes-core/install-on-emmc/files/install-on-emmc-on-first-boot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/install-on-emmc/files/install-on-emmc-on-first-boot.service -------------------------------------------------------------------------------- /meta-example/recipes-core/install-on-emmc/files/install-on-emmc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/install-on-emmc/files/install-on-emmc.sh -------------------------------------------------------------------------------- /meta-example/recipes-core/install-on-emmc/files/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/install-on-emmc/files/postinst -------------------------------------------------------------------------------- /meta-example/recipes-core/install-on-emmc/install-on-emmc_1.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/install-on-emmc/install-on-emmc_1.1.bb -------------------------------------------------------------------------------- /meta-example/recipes-core/iot2050-nm-settings/files/10-globally-managed-devices.conf: -------------------------------------------------------------------------------- 1 | [keyfile] 2 | unmanaged-devices=none 3 | -------------------------------------------------------------------------------- /meta-example/recipes-core/iot2050-nm-settings/files/cellular-4g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/iot2050-nm-settings/files/cellular-4g -------------------------------------------------------------------------------- /meta-example/recipes-core/iot2050-nm-settings/files/eno1-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/iot2050-nm-settings/files/eno1-default -------------------------------------------------------------------------------- /meta-example/recipes-core/iot2050-nm-settings/files/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/iot2050-nm-settings/files/postinst -------------------------------------------------------------------------------- /meta-example/recipes-core/iot2050-nm-settings/iot2050-nm-settings_1.0.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/iot2050-nm-settings/iot2050-nm-settings_1.0.0.bb -------------------------------------------------------------------------------- /meta-example/recipes-core/lxde-touch/files/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/lxde-touch/files/postinst -------------------------------------------------------------------------------- /meta-example/recipes-core/lxde-touch/lxde-touch_1.0.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/lxde-touch/lxde-touch_1.0.0.bb -------------------------------------------------------------------------------- /meta-example/recipes-core/swupdate-complete-update-helper/files/complete_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/swupdate-complete-update-helper/files/complete_update.sh -------------------------------------------------------------------------------- /meta-example/recipes-core/swupdate-complete-update-helper/swupdate-complete-update-helper_1.0.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/swupdate-complete-update-helper/swupdate-complete-update-helper_1.0.0.bb -------------------------------------------------------------------------------- /meta-example/recipes-core/swupdate-config/files/swupdate.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/swupdate-config/files/swupdate.cfg -------------------------------------------------------------------------------- /meta-example/recipes-core/swupdate-config/swupdate-config_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/swupdate-config/swupdate-config_%.bbappend -------------------------------------------------------------------------------- /meta-example/recipes-core/watchdog/files/99-watchdog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/watchdog/files/99-watchdog.conf -------------------------------------------------------------------------------- /meta-example/recipes-core/watchdog/iot2050-watchdog.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-core/watchdog/iot2050-watchdog.bb -------------------------------------------------------------------------------- /meta-example/recipes-devtools/firmware-update-package/files/iot2050-generate-fwu-tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-devtools/firmware-update-package/files/iot2050-generate-fwu-tarball.sh -------------------------------------------------------------------------------- /meta-example/recipes-devtools/firmware-update-package/files/update.conf.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-devtools/firmware-update-package/files/update.conf.json.tmpl -------------------------------------------------------------------------------- /meta-example/recipes-devtools/firmware-update-package/firmware-update-package_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/recipes-devtools/firmware-update-package/firmware-update-package_0.1.bb -------------------------------------------------------------------------------- /meta-example/wic/iot2050-swu-secure.wks.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/wic/iot2050-swu-secure.wks.in -------------------------------------------------------------------------------- /meta-example/wic/iot2050-swu.wks.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-example/wic/iot2050-swu.wks.in -------------------------------------------------------------------------------- /meta-hailo/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/MAINTAINERS.md -------------------------------------------------------------------------------- /meta-hailo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/README.md -------------------------------------------------------------------------------- /meta-hailo/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/conf/layer.conf -------------------------------------------------------------------------------- /meta-hailo/hailo_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/hailo_advanced.png -------------------------------------------------------------------------------- /meta-hailo/hailo_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/hailo_sm.png -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/debian/control -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/debian/hailort.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/debian/hailort.install -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/debian/hailort.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/debian/hailort.service -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/debian/hailortcli.install: -------------------------------------------------------------------------------- 1 | usr/bin/hailortcli 2 | -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/debian/libgsthailo-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/debian/libgsthailo-dev.install -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/debian/libgsthailo.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/debian/libgsthailo.install -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/debian/libhailort-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/debian/libhailort-dev.install -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/debian/libhailort.install: -------------------------------------------------------------------------------- 1 | usr/lib/${DEB_HOST_MULTIARCH}/libhailort.so.* 2 | -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/debian/not-installed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/debian/not-installed -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/debian/python-numpy.pref: -------------------------------------------------------------------------------- 1 | Package: python3-numpy 2 | Pin: version 1.23.3 3 | Pin-Priority: 1001 4 | -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/debian/python3-hailort.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/debian/python3-hailort.install -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/debian/rules -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/patches/0001-do-not-use-spdlog-formatting-internals.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/patches/0001-do-not-use-spdlog-formatting-internals.patch -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/patches/0002-use-distro-version-of-packages-if-possible.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/patches/0002-use-distro-version-of-packages-if-possible.patch -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/patches/0003-install-independent-of-build-target.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/patches/0003-install-independent-of-build-target.patch -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/patches/0004-install-python-bindings-into-dist-packages.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/patches/0004-install-python-bindings-into-dist-packages.patch -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/files/patches/0005-Fix-cross-compilation-issue-for-pybuild.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/files/patches/0005-Fix-cross-compilation-issue-for-pybuild.patch -------------------------------------------------------------------------------- /meta-hailo/recipes-app/hailort/hailort_4.18.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/hailort/hailort_4.18.0.bb -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/README.md -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/detection_pipeline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/detection_pipeline.gif -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/files/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/files/debian/control -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/files/debian/hailo-post-processes.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/files/debian/hailo-post-processes.install -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/files/debian/libgsthailotools.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/files/debian/libgsthailotools.install -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/files/debian/not-installed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/files/debian/not-installed -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/files/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/files/debian/rules -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/files/debian/tappas-apps.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/files/debian/tappas-apps.install -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/files/debian/tappas-tracers.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/files/debian/tappas-tracers.install -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/files/patches/0001-tappas-Adapt-tappas-apps-for-compatibility-with-meta.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/files/patches/0001-tappas-Adapt-tappas-apps-for-compatibility-with-meta.patch -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/files/patches/0002-Do-not-install-binaries-without-clear-license-clarif.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/files/patches/0002-Do-not-install-binaries-without-clear-license-clarif.patch -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/lpr_pipeline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/lpr_pipeline.gif -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/multistream_detection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/multistream_detection.gif -------------------------------------------------------------------------------- /meta-hailo/recipes-app/tappas/tappas_3.29.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-app/tappas/tappas_3.29.1.bb -------------------------------------------------------------------------------- /meta-hailo/recipes-bsp/hailo-firmware/hailo-firmware_4.18.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-bsp/hailo-firmware/hailo-firmware_4.18.0.bb -------------------------------------------------------------------------------- /meta-hailo/recipes-core/images/meta-hailo-packages.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-core/images/meta-hailo-packages.inc -------------------------------------------------------------------------------- /meta-hailo/recipes-kernel/hailo-pci/files/0001-Fix-the-prototypes-building-issue.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-kernel/hailo-pci/files/0001-Fix-the-prototypes-building-issue.patch -------------------------------------------------------------------------------- /meta-hailo/recipes-kernel/hailo-pci/hailo-pci_4.18.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-kernel/hailo-pci/hailo-pci_4.18.0.bb -------------------------------------------------------------------------------- /meta-hailo/recipes-python/python-numpy/files/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-python/python-numpy/files/debian/control -------------------------------------------------------------------------------- /meta-hailo/recipes-python/python-numpy/files/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-python/python-numpy/files/debian/rules -------------------------------------------------------------------------------- /meta-hailo/recipes-python/python-numpy/python-numpy_1.23.3.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-python/python-numpy/python-numpy_1.23.3.bb -------------------------------------------------------------------------------- /meta-hailo/recipes-python/python-verboselogs/files/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-python/python-verboselogs/files/debian/control -------------------------------------------------------------------------------- /meta-hailo/recipes-python/python-verboselogs/files/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-python/python-verboselogs/files/debian/rules -------------------------------------------------------------------------------- /meta-hailo/recipes-python/python-verboselogs/python-verboselogs_1.7.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-hailo/recipes-python/python-verboselogs/python-verboselogs_1.7.bb -------------------------------------------------------------------------------- /meta-node-red/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/README.md -------------------------------------------------------------------------------- /meta-node-red/classes/node-red-module.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/classes/node-red-module.bbclass -------------------------------------------------------------------------------- /meta-node-red/classes/npm.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/classes/npm.bbclass -------------------------------------------------------------------------------- /meta-node-red/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/conf/layer.conf -------------------------------------------------------------------------------- /meta-node-red/recipes-app/mindconnect-node-red-contrib-mindconnect/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/mindconnect-node-red-contrib-mindconnect/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-node-red/recipes-app/mindconnect-node-red-contrib-mindconnect/mindconnect-node-red-contrib-mindconnect_3.12.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/mindconnect-node-red-contrib-mindconnect/mindconnect-node-red-contrib-mindconnect_3.12.1.bb -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-contrib-modbus/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-contrib-modbus/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-contrib-modbus/node-red-contrib-modbus_5.44.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-contrib-modbus/node-red-contrib-modbus_5.44.1.bb -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-contrib-opcua/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-contrib-opcua/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-contrib-opcua/node-red-contrib-opcua_0.2.342.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-contrib-opcua/node-red-contrib-opcua_0.2.342.bb -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-contrib-s7/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-contrib-s7/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-contrib-s7/node-red-contrib-s7_3.1.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-contrib-s7/node-red-contrib-s7_3.1.1.bb -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-dashboard/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-dashboard/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-dashboard/node-red-dashboard_3.6.6.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-dashboard/node-red-dashboard_3.6.6.bb -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-gpio/files/0001-mraa-gpio-Change-text-x-red-to-text-html.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-gpio/files/0001-mraa-gpio-Change-text-x-red-to-text-html.patch -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-gpio/files/0002-mraa-gpio-Pass-settings-from-js-to-html.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-gpio/files/0002-mraa-gpio-Pass-settings-from-js-to-html.patch -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-gpio/files/0003-mraa-gpio-din-Make-D14-D19-IOT2050-only.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-gpio/files/0003-mraa-gpio-din-Make-D14-D19-IOT2050-only.patch -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-gpio/files/0004-mraa-gpio-din-Fix-the-for-attribute-of-lables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-gpio/files/0004-mraa-gpio-din-Fix-the-for-attribute-of-lables.patch -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-gpio/files/0005-mraa-gpio-dout-Add-D14-D19-for-IOT2050.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-gpio/files/0005-mraa-gpio-dout-Add-D14-D19-for-IOT2050.patch -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-gpio/files/0006-mraa-gpio-Make-led-node-IOT2050-only.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-gpio/files/0006-mraa-gpio-Make-led-node-IOT2050-only.patch -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-gpio/files/0007-mraa-gpio-Fix-led-label-in-the-flow-editor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-gpio/files/0007-mraa-gpio-Fix-led-label-in-the-flow-editor.patch -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-gpio/files/0008-mraa-gpio-Add-support-for-IOT2050-SM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-gpio/files/0008-mraa-gpio-Add-support-for-IOT2050-SM.patch -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-gpio/files/0009-mraa-gpio-pwm-Set-pin-options-according-to-board-typ.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-gpio/files/0009-mraa-gpio-pwm-Set-pin-options-according-to-board-typ.patch -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-gpio/node-red-gpio_0.4.0+git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-gpio/node-red-gpio_0.4.0+git.bb -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-node-random/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-node-random/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-node-random/node-red-node-random_0.4.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-node-random/node-red-node-random_0.4.1.bb -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-node-serialport/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-node-serialport/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-node-serialport/node-red-node-serialport_2.0.3.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-node-serialport/node-red-node-serialport_2.0.3.bb -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-node-sqlite/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-node-sqlite/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-node-sqlite/node-red-node-sqlite_1.1.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-node-sqlite/node-red-node-sqlite_1.1.1.bb -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red-preinstalled-nodes/node-red-preinstalled-nodes_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red-preinstalled-nodes/node-red-preinstalled-nodes_0.1.bb -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red/files/node-red.service.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red/files/node-red.service.tmpl -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red/node-red-home.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red/node-red-home.inc -------------------------------------------------------------------------------- /meta-node-red/recipes-app/node-red/node-red_4.0.9.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-app/node-red/node-red_4.0.9.bb -------------------------------------------------------------------------------- /meta-node-red/recipes-core/images/meta-node-red-packages.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-node-red/recipes-core/images/meta-node-red-packages.inc -------------------------------------------------------------------------------- /meta-sm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/README.md -------------------------------------------------------------------------------- /meta-sm/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/conf/layer.conf -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/README.md -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/.eslintrc.yml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/iot2050-conf-webui.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/iot2050-conf-webui.service -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/jsconfig.json -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/next.config.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/npm-shrinkwrap.json.nodev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/npm-shrinkwrap.json.nodev -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/package.json -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/app/deploy/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/app/deploy/route.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/app/favicon.ico -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/app/icon-siemens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/app/icon-siemens.svg -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/app/layout.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/app/page.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/app/retrieve/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/app/retrieve/route.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/app/smconf/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/app/smconf/page.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ConfigEntry/CheckConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ConfigEntry/CheckConfig.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ConfigEntry/ConfigGroupLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ConfigEntry/ConfigGroupLabel.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ConfigEntry/SelectionConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ConfigEntry/SelectionConfig.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ConfigEntry/SliderConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ConfigEntry/SliderConfig.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1221_8DI/SM1221with8DIConf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1221_8DI/SM1221with8DIConf.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1223/SM1223Conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1223/SM1223Conf.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1223/SM1223_AC_DI8_DQ8RLY_Conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1223/SM1223_AC_DI8_DQ8RLY_Conf.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1223/SM1223_DC_DI16_DQ16RLY_Conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1223/SM1223_DC_DI16_DQ16RLY_Conf.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1231_AI/SM1231AIConf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1231_AI/SM1231AIConf.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1231_AI/SM1231with4AIConf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1231_AI/SM1231with4AIConf.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1231_AI/SM1231with8AIConf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1231_AI/SM1231with8AIConf.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1231_RTD/SM1231_4RTDConf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1231_RTD/SM1231_4RTDConf.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1231_RTD/SM1231_8RTDConf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1231_RTD/SM1231_8RTDConf.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1231_RTD/SM1231_RTDConf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1231_RTD/SM1231_RTDConf.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1238_EM480VAC/SM1238EM480VACConf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SM1238_EM480VAC/SM1238EM480VACConf.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SMSensDI/SMSensDIConf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ExtendedModules/SMSensDI/SMSensDIConf.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ModuleInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ModuleInfo.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/SlotInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/SlotInfo.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/EmotionCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/EmotionCache.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/ThemeRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/ThemeRegistry.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/fonts/SiemensSans_Prof_Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/fonts/SiemensSans_Prof_Bold.woff2 -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/fonts/SiemensSans_Prof_BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/fonts/SiemensSans_Prof_BoldItalic.woff2 -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/fonts/SiemensSans_Prof_Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/fonts/SiemensSans_Prof_Italic.woff2 -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/fonts/SiemensSans_Prof_Roman.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/fonts/SiemensSans_Prof_Roman.woff2 -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/components/ThemeRegistry/theme.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/eioService/eioService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/eioService/eioService.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/gRPC/iot2050-eio.proto: -------------------------------------------------------------------------------- 1 | ../../../../../iot2050-eio-manager/files/gRPC/EIOManager/iot2050-eio.proto -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/smConfig/ConfTextConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/smConfig/ConfTextConverter.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/smConfig/smConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/smConfig/smConfig.js -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/uiString/SM1221_8DI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/uiString/SM1221_8DI.json -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/uiString/SM1223.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/uiString/SM1223.json -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/uiString/SM1231_AI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/uiString/SM1231_AI.json -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/uiString/SM1231_RTD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/uiString/SM1231_RTD.json -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/uiString/SM1238EM480VAC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/files/src/lib/uiString/SM1238EM480VAC.json -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-conf-webui/iot2050-conf-webui_1.0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-conf-webui/iot2050-conf-webui_1.0.1.bb -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/README.md -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-na.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-na.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm-config.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm-sens-di.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm-sens-di.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm1221-8di.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm1221-8di.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm1223-di-dq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm1223-di-dq.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm1231-ai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm1231-ai.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm1231-rtd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm1231-rtd.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm1238-em-480vac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-schema/schema-sm1238-em-480vac.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7221-1BF32-0XB0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7221-1BF32-0XB0.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7223-1PL32-0XB0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7223-1PL32-0XB0.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7223-1QH32-0XB0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7223-1QH32-0XB0.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7231-4HD32-0XB0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7231-4HD32-0XB0.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7231-4HF32-0XB0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7231-4HF32-0XB0.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7231-5PD32-0XB0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7231-5PD32-0XB0.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7231-5PF32-0XB0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7231-5PF32-0XB0.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7238-5XA32-0XB0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7238-5XA32-0XB0.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7647-0CM00-1AA2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-6ES7647-0CM00-1AA2.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-NA.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-template/mlfb-NA.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/config-template/sm-config-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/config-template/sm-config-example.yaml -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/gRPC/EIOManager/iot2050-eio.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/gRPC/EIOManager/iot2050-eio.proto -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/gRPC/EIOManager/iot2050_eio_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/gRPC/EIOManager/iot2050_eio_pb2.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/gRPC/EIOManager/iot2050_eio_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/gRPC/EIOManager/iot2050_eio_pb2.pyi -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/gRPC/EIOManager/iot2050_eio_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/gRPC/EIOManager/iot2050_eio_pb2_grpc.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/iot2050-eio-cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/iot2050-eio-cli.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/iot2050-eio-fwu-monitor.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/iot2050-eio-fwu-monitor.service -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/iot2050-eio-service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/iot2050-eio-service.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/iot2050-eio-time-syncing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/iot2050-eio-time-syncing.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/iot2050-eio-time-syncing.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/iot2050-eio-time-syncing.service -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/iot2050-eiod.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/iot2050-eiod.service -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/iot2050_eio_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/iot2050_eio_config.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/iot2050_eio_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/iot2050_eio_event.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/iot2050_eio_fwu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/iot2050_eio_fwu.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/iot2050_eio_fwu_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/iot2050_eio_fwu_monitor.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/files/iot2050_eio_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/files/iot2050_eio_global.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eio-manager/iot2050-eio-manager_1.0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eio-manager/iot2050-eio-manager_1.0.1.bb -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eiofsd/files/bin/.gitignore: -------------------------------------------------------------------------------- 1 | iot2050-eiofsd 2 | map3-fw.bin 3 | firmware-version 4 | -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eiofsd/files/bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eiofsd/files/bin/README.md -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eiofsd/files/iot2050-eiofsd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eiofsd/files/iot2050-eiofsd.service -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-eiofsd/iot2050-eiofsd_1.0.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-eiofsd/iot2050-eiofsd_1.0.0.bb -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/README.md -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/WATCHDOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/WATCHDOG.md -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/files/gRPC/EIOManager: -------------------------------------------------------------------------------- 1 | ../../../iot2050-eio-manager/files/gRPC/EIOManager -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/files/gRPC/EventInterface/iot2050-event.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/files/gRPC/EventInterface/iot2050-event.proto -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/files/gRPC/EventInterface/iot2050_event_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/files/gRPC/EventInterface/iot2050_event_pb2.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/files/gRPC/EventInterface/iot2050_event_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/files/gRPC/EventInterface/iot2050_event_pb2.pyi -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/files/gRPC/EventInterface/iot2050_event_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/files/gRPC/EventInterface/iot2050_event_pb2_grpc.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/files/iot2050-event-record.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/files/iot2050-event-record.conf -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/files/iot2050-event-record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/files/iot2050-event-record.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/files/iot2050-event-record.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/files/iot2050-event-record.service -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/files/iot2050-event-serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/files/iot2050-event-serve.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/files/iot2050-event-serve.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/files/iot2050-event-serve.service -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/files/iot2050_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/files/iot2050_event.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/files/iot2050_event_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/files/iot2050_event_global.py -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-event-record/iot2050-event-record_1.0.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-event-record/iot2050-event-record_1.0.0.bb -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-module-firmware-update/files/iot2050-module-firmware-update.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-module-firmware-update/files/iot2050-module-firmware-update.tmpl -------------------------------------------------------------------------------- /meta-sm/recipes-app/iot2050-module-firmware-update/iot2050-module-firmware-update_1.0.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-app/iot2050-module-firmware-update/iot2050-module-firmware-update_1.0.0.bb -------------------------------------------------------------------------------- /meta-sm/recipes-core/images/meta-sm-packages.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-core/images/meta-sm-packages.inc -------------------------------------------------------------------------------- /meta-sm/recipes-core/iot2050-proximity-driver/files/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-core/iot2050-proximity-driver/files/src/Makefile -------------------------------------------------------------------------------- /meta-sm/recipes-core/iot2050-proximity-driver/files/src/com.siemens.iot2050.pxmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-core/iot2050-proximity-driver/files/src/com.siemens.iot2050.pxmt.conf -------------------------------------------------------------------------------- /meta-sm/recipes-core/iot2050-proximity-driver/files/src/dbus-service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-core/iot2050-proximity-driver/files/src/dbus-service.c -------------------------------------------------------------------------------- /meta-sm/recipes-core/iot2050-proximity-driver/files/src/dbus-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-core/iot2050-proximity-driver/files/src/dbus-service.h -------------------------------------------------------------------------------- /meta-sm/recipes-core/iot2050-proximity-driver/files/src/iot2050-proximity-driver.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-core/iot2050-proximity-driver/files/src/iot2050-proximity-driver.service -------------------------------------------------------------------------------- /meta-sm/recipes-core/iot2050-proximity-driver/files/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-core/iot2050-proximity-driver/files/src/main.c -------------------------------------------------------------------------------- /meta-sm/recipes-core/iot2050-proximity-driver/files/src/sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-core/iot2050-proximity-driver/files/src/sensor.c -------------------------------------------------------------------------------- /meta-sm/recipes-core/iot2050-proximity-driver/files/src/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-core/iot2050-proximity-driver/files/src/sensor.h -------------------------------------------------------------------------------- /meta-sm/recipes-core/iot2050-proximity-driver/iot2050-proximity-driver_1.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta-sm/recipes-core/iot2050-proximity-driver/iot2050-proximity-driver_1.0.bb -------------------------------------------------------------------------------- /meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/README.md -------------------------------------------------------------------------------- /meta/classes/git-timestamp.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/classes/git-timestamp.bbclass -------------------------------------------------------------------------------- /meta/conf/distro/iot2050-debian.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/conf/distro/iot2050-debian.conf -------------------------------------------------------------------------------- /meta/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/conf/layer.conf -------------------------------------------------------------------------------- /meta/conf/machine/iot2050-qemu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/conf/machine/iot2050-qemu.conf -------------------------------------------------------------------------------- /meta/conf/machine/iot2050.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/conf/machine/iot2050.conf -------------------------------------------------------------------------------- /meta/recipes-app/mraa/files/0001-gpio-Fix-JS-binding-regarding-interrupt-injections.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/mraa/files/0001-gpio-Fix-JS-binding-regarding-interrupt-injections.patch -------------------------------------------------------------------------------- /meta/recipes-app/mraa/files/0002-common-increase-pin-name-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/mraa/files/0002-common-increase-pin-name-size.patch -------------------------------------------------------------------------------- /meta/recipes-app/mraa/files/0003-iot2050-add-debugfs-pinmux-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/mraa/files/0003-iot2050-add-debugfs-pinmux-support.patch -------------------------------------------------------------------------------- /meta/recipes-app/mraa/files/0004-iot2050-Add-support-for-the-new-IOT2050-SM-variant.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/mraa/files/0004-iot2050-Add-support-for-the-new-IOT2050-SM-variant.patch -------------------------------------------------------------------------------- /meta/recipes-app/mraa/files/0005-python-binding-Fix-Python-3.13-compatibility.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/mraa/files/0005-python-binding-Fix-Python-3.13-compatibility.patch -------------------------------------------------------------------------------- /meta/recipes-app/mraa/files/0006-javascript-update-C-standard-to-C-17-for-compatibili.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/mraa/files/0006-javascript-update-C-standard-to-C-17-for-compatibili.patch -------------------------------------------------------------------------------- /meta/recipes-app/mraa/files/0007-fix-iot2050-Correct-parent-IDs-for-PWM-pins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/mraa/files/0007-fix-iot2050-Correct-parent-IDs-for-PWM-pins.patch -------------------------------------------------------------------------------- /meta/recipes-app/mraa/files/0008-fix-GPIOs-that-number-is-larger-than-512-cannot-trig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/mraa/files/0008-fix-GPIOs-that-number-is-larger-than-512-cannot-trig.patch -------------------------------------------------------------------------------- /meta/recipes-app/mraa/files/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/mraa/files/rules -------------------------------------------------------------------------------- /meta/recipes-app/mraa/mraa_2.2.0+git20220805.8b1c5493.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/mraa/mraa_2.2.0+git20220805.8b1c5493.bb -------------------------------------------------------------------------------- /meta/recipes-app/switchserialmode/files/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/switchserialmode/files/src/CMakeLists.txt -------------------------------------------------------------------------------- /meta/recipes-app/switchserialmode/files/src/gpio_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/switchserialmode/files/src/gpio_helper.c -------------------------------------------------------------------------------- /meta/recipes-app/switchserialmode/files/src/gpio_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/switchserialmode/files/src/gpio_helper.h -------------------------------------------------------------------------------- /meta/recipes-app/switchserialmode/files/src/serial/cp2102n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/switchserialmode/files/src/serial/cp2102n.c -------------------------------------------------------------------------------- /meta/recipes-app/switchserialmode/files/src/serial/omap_8250.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/switchserialmode/files/src/serial/omap_8250.c -------------------------------------------------------------------------------- /meta/recipes-app/switchserialmode/files/src/switchserialmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/switchserialmode/files/src/switchserialmode.c -------------------------------------------------------------------------------- /meta/recipes-app/switchserialmode/files/src/switchserialmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/switchserialmode/files/src/switchserialmode.h -------------------------------------------------------------------------------- /meta/recipes-app/switchserialmode/files/src/transceiver/sp339e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/switchserialmode/files/src/transceiver/sp339e.c -------------------------------------------------------------------------------- /meta/recipes-app/switchserialmode/switchserialmode_1.0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-app/switchserialmode/switchserialmode_1.0.1.bb -------------------------------------------------------------------------------- /meta/recipes-bsp/k3-rti-wdt/files/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | export CC=gcc 4 | 5 | %: 6 | dh $@ 7 | -------------------------------------------------------------------------------- /meta/recipes-bsp/k3-rti-wdt/k3-rti-wdt_1.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/k3-rti-wdt/k3-rti-wdt_1.2.bb -------------------------------------------------------------------------------- /meta/recipes-bsp/optee-client/optee-client-iot2050_4.7.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/optee-client/optee-client-iot2050_4.7.0.bb -------------------------------------------------------------------------------- /meta/recipes-bsp/optee-ftpm/files/0001-fTPM-use-TA_FLAG_DEVICE_ENUM_SUPP-for-kernels-withou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/optee-ftpm/files/0001-fTPM-use-TA_FLAG_DEVICE_ENUM_SUPP-for-kernels-withou.patch -------------------------------------------------------------------------------- /meta/recipes-bsp/optee-ftpm/optee-ftpm-iot2050_4.7+v1.62r1-48-ge9fc7b8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/optee-ftpm/optee-ftpm-iot2050_4.7+v1.62r1-48-ge9fc7b8.bb -------------------------------------------------------------------------------- /meta/recipes-bsp/optee-os/files/0001-plat-k3-main-Add-platform-RNG-initialization-for-K3-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/optee-os/files/0001-plat-k3-main-Add-platform-RNG-initialization-for-K3-.patch -------------------------------------------------------------------------------- /meta/recipes-bsp/optee-os/optee-os-iot2050_4.7.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/optee-os/optee-os-iot2050_4.7.0.bb -------------------------------------------------------------------------------- /meta/recipes-bsp/optee-os/optee-os-iot2050_4.7.0.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/optee-os/optee-os-iot2050_4.7.0.inc -------------------------------------------------------------------------------- /meta/recipes-bsp/optee-os/optee-os-tadevkit-iot2050_4.7.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/optee-os/optee-os-tadevkit-iot2050_4.7.0.bb -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/README.md -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/its/include/key-provision-bmpk.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/its/include/key-provision-bmpk.its -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/its/include/key-provision-mpk-smpk.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/its/include/key-provision-mpk-smpk.its -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/its/key-provision-3keys.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/its/key-provision-3keys.its -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/its/key-provision-enabling-only.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/its/key-provision-enabling-only.its -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/its/key-provision-keys-only.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/its/key-provision-keys-only.its -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/its/key-provision.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/its/key-provision.its -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/its/key-switch.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/its/key-switch.its -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/keys/custBmpk.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/keys/custBmpk.crt -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/keys/custBmpk.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/keys/custBmpk.pem -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/keys/custMpk.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/keys/custMpk.crt -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/keys/custMpk.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/keys/custMpk.pem -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/keys/custSmpk.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/keys/custSmpk.crt -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/keys/custSmpk.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/keys/custSmpk.pem -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/make-otpcmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/make-otpcmd.sh -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/files/rules.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/files/rules.tmpl -------------------------------------------------------------------------------- /meta/recipes-bsp/secure-boot-otp-provisioning/secure-boot-otp-provisioning_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/secure-boot-otp-provisioning/secure-boot-otp-provisioning_0.1.bb -------------------------------------------------------------------------------- /meta/recipes-bsp/ti-pruss-firmware/ti-pruss-firmware_10.00.06.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/ti-pruss-firmware/ti-pruss-firmware_10.00.06.bb -------------------------------------------------------------------------------- /meta/recipes-bsp/trusted-firmware-a/trusted-firmware-a-iot2050_2.8.35.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/trusted-firmware-a/trusted-firmware-a-iot2050_2.8.35.bb -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/README.md -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/back_iot2050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/back_iot2050.png -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/0001-arm-dts-iot2050-Add-overlay-for-DMA-isolation-for-de.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/files/0001-arm-dts-iot2050-Add-overlay-for-DMA-isolation-for-de.patch -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/0002-board-siemens-iot2050-Generalize-overlay_prepare.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/files/0002-board-siemens-iot2050-Generalize-overlay_prepare.patch -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/0003-board-siemens-iot2050-Allow-to-enable-and-adjust-res.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/files/0003-board-siemens-iot2050-Allow-to-enable-and-adjust-res.patch -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/0004-arm-dts-iot2050-Enforce-DMA-isolation-for-devices-be.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/files/0004-arm-dts-iot2050-Enforce-DMA-isolation-for-devices-be.patch -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/0005-remoteproc-k3-add-config-to-gate-R5F-firmware-authen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/files/0005-remoteproc-k3-add-config-to-gate-R5F-firmware-authen.patch -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/fw_env.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/files/fw_env.config -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/keys/custMpk.crt: -------------------------------------------------------------------------------- 1 | ../../../secure-boot-otp-provisioning/files/keys/custMpk.crt -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/keys/custMpk.key: -------------------------------------------------------------------------------- 1 | custMpk.pem -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/keys/custMpk.pem: -------------------------------------------------------------------------------- 1 | ../../../secure-boot-otp-provisioning/files/keys/custMpk.pem -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/otpcmd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/files/otpcmd.cfg -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/prebuild/seboot_pg1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/files/prebuild/seboot_pg1.bin -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/prebuild/seboot_pg2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/files/prebuild/seboot_pg2.bin -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/rpmb-setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/files/rpmb-setup.cfg -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/rules.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/files/rules.tmpl -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/files/secure-boot.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/files/secure-boot.cfg -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/u-boot-iot2050.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/u-boot-iot2050.inc -------------------------------------------------------------------------------- /meta/recipes-bsp/u-boot/u-boot-iot2050_2025.04.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-bsp/u-boot/u-boot-iot2050_2025.04.bb -------------------------------------------------------------------------------- /meta/recipes-core/images/iot2050-image-base.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/images/iot2050-image-base.bb -------------------------------------------------------------------------------- /meta/recipes-core/images/meta-packages.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/images/meta-packages.inc -------------------------------------------------------------------------------- /meta/recipes-core/iot2050-base-packages/files/20-assign-ethernet-names.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/iot2050-base-packages/files/20-assign-ethernet-names.rules -------------------------------------------------------------------------------- /meta/recipes-core/iot2050-base-packages/files/20-create-symbolic-link-for-serial-port.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/iot2050-base-packages/files/20-create-symbolic-link-for-serial-port.rules -------------------------------------------------------------------------------- /meta/recipes-core/iot2050-base-packages/files/postinst.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/iot2050-base-packages/files/postinst.tmpl -------------------------------------------------------------------------------- /meta/recipes-core/iot2050-base-packages/files/terminal_resize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/iot2050-base-packages/files/terminal_resize.sh -------------------------------------------------------------------------------- /meta/recipes-core/iot2050-base-packages/iot2050-base-packages_1.0.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/iot2050-base-packages/iot2050-base-packages_1.0.0.bb -------------------------------------------------------------------------------- /meta/recipes-core/iot2050-firmware/iot2050-firmware_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/iot2050-firmware/iot2050-firmware_0.1.bb -------------------------------------------------------------------------------- /meta/recipes-core/iot2050-status-led/files/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/iot2050-status-led/files/postinst -------------------------------------------------------------------------------- /meta/recipes-core/iot2050-status-led/files/status-led.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/iot2050-status-led/files/status-led.service -------------------------------------------------------------------------------- /meta/recipes-core/iot2050-status-led/iot2050-status-led_1.0.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/iot2050-status-led/iot2050-status-led_1.0.0.bb -------------------------------------------------------------------------------- /meta/recipes-core/regen-rootfs-uuid/files/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/regen-rootfs-uuid/files/postinst -------------------------------------------------------------------------------- /meta/recipes-core/regen-rootfs-uuid/files/regen-rootfs-uuid-on-first-boot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/regen-rootfs-uuid/files/regen-rootfs-uuid-on-first-boot.service -------------------------------------------------------------------------------- /meta/recipes-core/regen-rootfs-uuid/files/regen-rootfs-uuid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/regen-rootfs-uuid/files/regen-rootfs-uuid.sh -------------------------------------------------------------------------------- /meta/recipes-core/regen-rootfs-uuid/regen-rootfs-uuid_1.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/regen-rootfs-uuid/regen-rootfs-uuid_1.0.bb -------------------------------------------------------------------------------- /meta/recipes-core/ssh-root-login/files/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/ssh-root-login/files/postinst -------------------------------------------------------------------------------- /meta/recipes-core/ssh-root-login/ssh-root-login_1.0.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-core/ssh-root-login/ssh-root-login_1.0.0.bb -------------------------------------------------------------------------------- /meta/recipes-devtools/sbuild-chroot/sbuild-chroot-target-npm.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-target-npm.bb -------------------------------------------------------------------------------- /meta/recipes-devtools/secure-boot-secrets/files/custMpk.crt: -------------------------------------------------------------------------------- 1 | ../../../recipes-bsp/secure-boot-otp-provisioning/files/keys/custMpk.crt -------------------------------------------------------------------------------- /meta/recipes-devtools/secure-boot-secrets/files/custMpk.pem: -------------------------------------------------------------------------------- 1 | ../../../recipes-bsp/secure-boot-otp-provisioning/files/keys/custMpk.pem -------------------------------------------------------------------------------- /meta/recipes-devtools/secure-boot-secrets/secure-boot-custmpk_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-devtools/secure-boot-secrets/secure-boot-custmpk_0.1.bb -------------------------------------------------------------------------------- /meta/recipes-devtools/swupdate-certificates/files/custMpk.crt: -------------------------------------------------------------------------------- 1 | ../../../recipes-bsp/secure-boot-otp-provisioning/files/keys/custMpk.crt -------------------------------------------------------------------------------- /meta/recipes-devtools/swupdate-certificates/files/custMpk.pem: -------------------------------------------------------------------------------- 1 | ../../../recipes-bsp/secure-boot-otp-provisioning/files/keys/custMpk.pem -------------------------------------------------------------------------------- /meta/recipes-devtools/swupdate-certificates/swupdate-certificates-custmpk_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-devtools/swupdate-certificates/swupdate-certificates-custmpk_0.1.bb -------------------------------------------------------------------------------- /meta/recipes-devtools/swupdate-certificates/swupdate-certificates-key-custmpk_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-devtools/swupdate-certificates/swupdate-certificates-key-custmpk_0.1.bb -------------------------------------------------------------------------------- /meta/recipes-initramfs/iot2050-initramfs/iot2050-initramfs_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-initramfs/iot2050-initramfs/iot2050-initramfs_0.1.bb -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/iot2050-rt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/iot2050-rt.cfg -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/iot2050_defconfig_base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/iot2050_defconfig_base -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/iot2050_defconfig_extra.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/iot2050_defconfig_extra.cfg -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/iot2050_defconfig_hailo.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_SWIOTLB_SEGSIZE=256 2 | -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/iot2050_defconfig_secure.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/iot2050_defconfig_secure.cfg -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0001-irqchip-irq-pruss-intc-Fix-enabling-of-intc-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0001-irqchip-irq-pruss-intc-Fix-enabling-of-intc-events.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0002-irqchip-irq-pruss-intc-Fix-listed-IRQ-type-in-proc-i.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0002-irqchip-irq-pruss-intc-Fix-listed-IRQ-type-in-proc-i.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0003-irqchip-irq-pruss-intc-Fix-processing-of-IEP-interru.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0003-irqchip-irq-pruss-intc-Fix-processing-of-IEP-interru.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0004-dmaengine-ti-k3-udma-glue-do-not-create-glue-dma-dev.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0004-dmaengine-ti-k3-udma-glue-do-not-create-glue-dma-dev.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0005-mmc-sdhci_am654-Disable-data-error-interrupts-while-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0005-mmc-sdhci_am654-Disable-data-error-interrupts-while-.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0006-PCI-keystone-Convert-to-using-hierarchy-domain-for-l.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0006-PCI-keystone-Convert-to-using-hierarchy-domain-for-l.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0007-PCI-keystone-Add-PCI-legacy-interrupt-support-for-AM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0007-PCI-keystone-Add-PCI-legacy-interrupt-support-for-AM.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0008-arm64-dts-ti-k3-am65-main-Add-properties-to-support-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0008-arm64-dts-ti-k3-am65-main-Add-properties-to-support-.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0009-firmware-ti_sci-Update-ti_sci_msg_req_reboot-to-incl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0009-firmware-ti_sci-Update-ti_sci_msg_req_reboot-to-incl.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0010-WIP-arm64-dts-ti-iot2050-Add-node-for-generic-spidev.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0010-WIP-arm64-dts-ti-iot2050-Add-node-for-generic-spidev.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0011-arm64-dts-ti-Indicate-the-green-light-is-off-when-pa.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0011-arm64-dts-ti-Indicate-the-green-light-is-off-when-pa.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0012-HACK-setting-the-RJ45-port-led-behavior.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0012-HACK-setting-the-RJ45-port-led-behavior.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0013-WIP-feat-extend-led-panic-indicator-on-and-off.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0013-WIP-feat-extend-led-panic-indicator-on-and-off.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0014-WIP-dts-iot2050-Add-spidev-for-IOT2050-SM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0014-WIP-dts-iot2050-Add-spidev-for-IOT2050-SM.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0015-dt-bindings-soc-ti-Add-AM65-peripheral-virtualizatio.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0015-dt-bindings-soc-ti-Add-AM65-peripheral-virtualizatio.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0016-soc-ti-Add-IOMPU-like-PVU-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0016-soc-ti-Add-IOMPU-like-PVU-driver.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0017-dt-bindings-PCI-ti-am65-Extend-for-use-with-PVU.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0017-dt-bindings-PCI-ti-am65-Extend-for-use-with-PVU.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0018-arm64-dts-ti-k3-am65-main-Add-VMAP-registers-to-PCI-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0018-arm64-dts-ti-k3-am65-main-Add-VMAP-registers-to-PCI-.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0019-PCI-keystone-Add-supported-for-PVU-based-DMA-isolati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0019-PCI-keystone-Add-supported-for-PVU-based-DMA-isolati.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0020-arm64-dts-ti-iot2050-Enforce-DMA-isolation-for-devic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0020-arm64-dts-ti-iot2050-Enforce-DMA-isolation-for-devic.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0021-swiotlb-Make-IO_TLB_SEGSIZE-configurable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0021-swiotlb-Make-IO_TLB_SEGSIZE-configurable.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0022-arm64-dts-ti-iot2050-Add-support-for-dts-overlay-for.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0022-arm64-dts-ti-iot2050-Add-support-for-dts-overlay-for.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0023-spi-cadence-qspi-Workaround-potential-flash-writing-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0023-spi-cadence-qspi-Workaround-potential-flash-writing-.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0024-dts-Enable-ehrpwm-nodes-to-support-PWM-feature.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0024-dts-Enable-ehrpwm-nodes-to-support-PWM-feature.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0025-dts-iot2050-Fix-DP-configuration-failure-due-to-inco.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0025-dts-iot2050-Fix-DP-configuration-failure-due-to-inco.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0025-epoll-fix-eventpoll-read-lock-not-writer-fair-in-preemt-rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0025-epoll-fix-eventpoll-read-lock-not-writer-fair-in-preemt-rt.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0026-drm-tidss-Use-the-crtc_-timings-when-programming-the.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0026-drm-tidss-Use-the-crtc_-timings-when-programming-the.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/files/patches/0027-Revert-drm-tidss-Update-encoder-bridge-chain-connect.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/files/patches/0027-Revert-drm-tidss-Update-encoder-bridge-chain-connect.patch -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/linux-iot2050-6.12.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/linux-iot2050-6.12.inc -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/linux-iot2050-rt_6.12.46-cip8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/linux-iot2050-rt_6.12.46-cip8.bb -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/linux-iot2050_6.12.46-cip8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/linux-iot2050_6.12.46-cip8.bb -------------------------------------------------------------------------------- /meta/recipes-kernel/linux/linux-iot2050_6.x-upstream.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/recipes-kernel/linux/linux-iot2050_6.x-upstream.bb -------------------------------------------------------------------------------- /meta/wic/iot2050.wks.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/meta/wic/iot2050.wks.in -------------------------------------------------------------------------------- /scripts/host/start-qemu-iot2050.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2050/HEAD/scripts/host/start-qemu-iot2050.sh --------------------------------------------------------------------------------