├── .gitlab-ci.yml ├── LICENSE ├── README.md ├── kas-bsp-rt.yml ├── kas-bsp.yml ├── kas-example-rt.yml ├── kas-example-swupdate.yml ├── kas-example.yml ├── kas-sdk-linux-x64.yml ├── kas-sdk-windows-i586.yml ├── meta-iot2000-bsp ├── COPYING.GPLv2 ├── COPYING.MIT ├── conf │ ├── layer.conf │ └── machine │ │ ├── include │ │ └── intel-quark-common.inc │ │ └── iot2000.conf ├── recipes-bsp │ ├── acpi-upgrades │ │ ├── acpi-upgrades.bb │ │ └── tables │ │ │ └── iot2000 │ │ │ └── ssdt-fixes.asl │ └── formfactor │ │ ├── formfactor │ │ └── iot2000 │ │ │ └── machconfig │ │ └── formfactor_0.0.bbappend ├── recipes-core │ ├── ell │ │ └── ell_0.22.bb │ └── images │ │ ├── core-image-iot2000.inc │ │ ├── core-image-minimal.bbappend │ │ ├── core-image-rt.bb │ │ └── wic-image.inc ├── recipes-devtools │ ├── go │ │ ├── common │ │ │ └── go-wrapper │ │ ├── go-cross-iot2000.inc │ │ ├── go-cross_1.6%.bbappend │ │ ├── go-cross_1.6-dummy.bb │ │ ├── go-cross_1.8%.bbappend │ │ ├── go-cross_1.8-dummy.bb │ │ ├── patches-1.6 │ │ │ ├── 0001-runtime-Implement-i386-atomic-quadword-ops-alternati.patch │ │ │ ├── 0002-Revert-runtime-check-and-fail-early-with-a-message-i.patch │ │ │ └── 0003-cmd-internal-obj-x86-cmd-compile-internal-x86-Add-In.patch │ │ └── patches-1.8 │ │ │ ├── 0001-runtime-Implement-i386-atomic-quadword-ops-alternati.patch │ │ │ ├── 0002-Revert-runtime-check-and-fail-early-with-a-message-i.patch │ │ │ └── 0003-cmd-internal-obj-x86-cmd-compile-internal-x86-Add-In.patch │ └── nodejs │ │ ├── nodejs │ │ ├── 0001-Restore-x87-port.patch │ │ ├── 0002-Switch-to-x87-mode-when-targeting-ia32.patch │ │ ├── 0003-Relax-check-in-ComputeInputFrameSize.patch │ │ ├── 0004-py2to3-automatic-conversion-via-2to3-tool.patch │ │ ├── 0005-py2to3-fix-configure.patch │ │ ├── 0006-py2to3-fix-tools-gyp-pylib-gyp-input.py.patch │ │ ├── 0007-py2to3-fix-tools-configure.d-nodedownload.py.patch │ │ ├── 0008-py2to3-deps-v8-gypfiles-toolchain.gypi.patch │ │ ├── 0009-py2to3-fix-tools-gyp-pylib-gyp-generator-make.py.patch │ │ ├── 0010-py2to3-fix-tools-compress_json.py.patch │ │ ├── 0011-py2to3-fix-tools-js2c.py-deps-v8-tools-js2c.py.patch │ │ ├── 0012-py2to3-fix-deps-v8-tools-gen-postmortem-metadata.py.patch │ │ ├── 0013-py2to3-fix-async-keyword-error.patch │ │ ├── 0014-py2to3-fix-deps-v8-third_party-jinja2-runtime.py.patch │ │ ├── 0015-py2to3-fix-gyp-samples-samples.patch │ │ ├── 0016-py2to3-use-python3-for-node-gyp.patch │ │ ├── 0017-CVE-2019-15606.patch │ │ ├── 0018-CVE-2019-15604.patch │ │ ├── 0019-CVE-2019-15605.patch │ │ ├── 0020-CVE-2020-8174.patch │ │ ├── 0021-nghttp2_1.41.0.patch │ │ ├── 0022-CVE-2020-11080.patch │ │ ├── 0023-CVE-2020-8265.patch │ │ ├── 0024-CVE-2020-8287.patch │ │ ├── 0025-CVE-2021-22884.patch │ │ ├── 0026-CVE-2021-22883.patch │ │ ├── 0027-CVE-2021-22930.patch │ │ ├── 0028-CVE-2021-22939.patch │ │ ├── 0029-CVE-2021-44907.patch │ │ ├── 0030-CVE-2022-0235.patch │ │ ├── 0031-OpenSSL-1.1.1-support.patch │ │ └── 0032-Fix-build-with-openssl-1.1.1d.patch │ │ ├── nodejs_8%.bbappend │ │ └── nodejs_8-dummy.bb ├── recipes-extended │ └── stress │ │ ├── stress_%.bbappend │ │ └── stress_0-dummy.bb ├── recipes-kernel │ └── linux │ │ ├── configs │ │ ├── defconfig │ │ ├── iot2000-cip-rt.cfg │ │ ├── iot2000-cip-rt.scc │ │ ├── iot2000-mainline.cfg │ │ └── iot2000-mainline.scc │ │ ├── linux-cip-rt_4.4.bb │ │ ├── linux-cip_4.4.bb │ │ ├── linux-cip_4.4.inc │ │ ├── linux-mainline-latest.bb │ │ └── patches │ │ ├── 0001-stmmac-pci-Make-stmmac_pci_info-structure-constant.patch │ │ ├── 0002-stmmac-pci-Use-stmmac_pci_info-for-all-devices.patch │ │ ├── 0003-stmmac-pci-Make-stmmac_pci_find_phy_addr-truly-gener.patch │ │ ├── 0004-stmmac-pci-Select-quark_pci_dmi_data-from-quark_defa.patch │ │ ├── 0005-stmmac-pci-Use-dmi_system_id-table-for-retrieving-PH.patch │ │ ├── 0006-stmmac-pci-Adjust-IOT2000-matching.patch │ │ ├── 0007-serial-8250_exar-Adjust-IOT2000-matching.patch │ │ ├── 0008-mfd-intel_quark_i2c_gpio-Adjust-IOT2000-matching.patch │ │ ├── 0009-gpio-sch-use-gpiochip-data-pointer.patch │ │ ├── 0010-gpio-sch-Use-devm_gpiochip_add_data-for-gpio-registr.patch │ │ ├── 0011-gpio-sch-Fix-Oops-on-module-load-on-Asus-Eee-PC-1201.patch │ │ ├── 0012-gpio-sch-Implement-.get_direction.patch │ │ ├── 0013-gpio-sch-Add-interrupt-support.patch │ │ ├── 0014-iot2000-hack-Work-around-DSDT-mistake.patch │ │ ├── 0015-iot2000-hack-Adjust-pca9685-gpio-base-for-legacy-com.patch │ │ ├── 0016-iot2000-hack-gpio-pca953x-provide-GPIO-base-based-on.patch │ │ ├── 0017-iot2000-hack-gpio-pca953x-add-drive-property.patch │ │ ├── 0018-iot2000-hack-pwm-pca-9685-Provide-chip-level-pwm_per.patch │ │ ├── 0019-random-replace-non-blocking-pool-with-a-Chacha20-bas.patch │ │ ├── 0020-random-make-dev-urandom-scalable-for-silly-userspace.patch │ │ ├── 0021-random-add-backtracking-protection-to-the-CRNG.patch │ │ ├── 0022-random-remove-stale-maybe_reseed_primary_crng.patch │ │ ├── 0023-random-use-chacha20-for-get_random_int-long.patch │ │ ├── 0024-random-convert-get_random_int-long-into-get_random_u.patch │ │ ├── 0025-random-invalidate-batched-entropy-after-crng-init.patch │ │ ├── 0026-random-silence-compiler-warnings-and-fix-race.patch │ │ ├── 0027-random-add-wait_for_random_bytes-API.patch │ │ ├── 0028-random-fix-crng_ready-test.patch │ │ ├── 0029-random-use-a-different-mixing-algorithm-for-add_devi.patch │ │ ├── 0030-random-only-read-from-dev-random-after-its-pool-has-.patch │ │ ├── 0031-random-fix-soft-lockup-when-trying-to-read-from-an-u.patch │ │ ├── 0032-random-try-to-actively-add-entropy-rather-than-passi.patch │ │ ├── rt-0001-spi-pca2xx-pci-Allow-MSI.patch │ │ └── rt-0002-gpio-dwapb-Work-around-RT-full-s-enforced-IRQ-thread.patch ├── recipes-multimedia │ └── ffmpeg │ │ └── ffmpeg_%.bbappend ├── recipes-tools │ └── switchmode │ │ ├── files │ │ └── switchmode.c │ │ └── switchmode_0.1.bb └── scripts │ └── lib │ └── wic │ └── canned-wks │ ├── common.iot2000.wks.footer.inc │ ├── common.iot2000.wks.header.inc │ └── wic-image.iot2000.wks └── meta-iot2000-example ├── COPYING.GPLv2 ├── COPYING.MIT ├── README.SWUPDATE.md ├── classes └── npm-ng.bbclass ├── conf ├── distro │ └── poky-iot2000.conf └── layer.conf ├── recipes-connectivity ├── connman │ ├── connman_%.bbappend │ └── files │ │ ├── main.conf │ │ └── settings └── openssl │ ├── files │ └── 0001-make-bnrand_range-reliable-with-deterministic-run-ti.patch │ └── openssl_1.1.%.bbappend ├── recipes-core └── images │ ├── example-image-swu.inc │ ├── files │ └── sw-description │ ├── iot2000-example-image-rt.bb │ ├── iot2000-example-image-swu.bb │ ├── iot2000-example-image.bb │ ├── iot2000-example-image.inc │ ├── iot2000-update-image.bb │ └── persiststore.bb ├── recipes-devtools └── nodejs │ ├── nodejs │ └── 0001-Disable-running-gyp-files-for-bundled-deps.patch │ └── nodejs_8.17.0.bb ├── recipes-example ├── busybox │ ├── busybox_1.31.%.bbappend │ └── files │ │ ├── arp.cfg │ │ ├── lsusb.cfg │ │ ├── nc.cfg │ │ ├── no-ext-dhcp.cfg │ │ ├── ntp.conf │ │ ├── ntpclient.cfg │ │ └── ntpd.busybox ├── init-ifupdown │ ├── files │ │ └── interfaces │ └── init-ifupdown_%.bbappend ├── iot2000setup │ ├── files │ │ ├── expandfs.sh │ │ └── iot2000setup.py │ ├── iot2000setup_1.0.bb │ └── mosquitto_%.bbappend └── modules │ ├── files │ ├── i2c-dev.conf │ └── ofono-module.conf │ └── modules-load-entries_1.0.bb ├── recipes-extended └── mraa │ └── mraa_%.bbappend ├── recipes-galileo ├── galileo-target │ ├── files │ │ ├── galileo-sketch-reset.service │ │ ├── galileo-target.service │ │ ├── galileo-target │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Readme.txt │ │ │ ├── canit.c │ │ │ ├── clloader.c │ │ │ ├── clloader.h │ │ │ ├── config.h │ │ │ ├── crctab.c │ │ │ ├── galileo-reset │ │ │ │ ├── galileo-reset.c │ │ │ │ └── galileo-reset.h │ │ │ ├── long-options.c │ │ │ ├── long-options.h │ │ │ ├── lsyslog.c │ │ │ ├── protname.c │ │ │ ├── rbsb.c │ │ │ ├── scripts │ │ │ │ └── opt │ │ │ │ │ └── cln │ │ │ │ │ └── galileo │ │ │ │ │ ├── galileo_sketch_reset_script.sh │ │ │ │ │ └── sketch-setup.sh │ │ │ ├── tcp.c │ │ │ ├── timing.c │ │ │ ├── timing.h │ │ │ ├── xstrtol.c │ │ │ ├── xstrtol.h │ │ │ ├── xstrtoul.c │ │ │ ├── xstrtoul.h │ │ │ ├── zglobal.h │ │ │ ├── zm.c │ │ │ ├── zmodem.h │ │ │ ├── zperr.c │ │ │ └── zreadline.c │ │ ├── galileod.init │ │ ├── launcher.sh │ │ └── r1_2_sketch_reset.patch │ └── galileo-target_0.1.bb └── uclibc │ ├── site_config │ ├── funcs │ ├── headers │ └── types │ ├── uclibc-config.inc │ ├── uclibc-git.inc │ ├── uclibc-git │ ├── 0001-Disable-lrount_tes-function.patch │ ├── locale.cfg │ ├── obstack.cfg │ ├── uClibc.distro │ └── uClibc.machine │ ├── uclibc-package.inc │ ├── uclibc.inc │ ├── uclibc │ ├── 0001-dl-elf.c-never-look-in-shared-library-loader-for-lib.patch │ ├── 0002-Very-hacky-solution-for-arduino-eeprom-compatibility.patch │ ├── config.cfg │ ├── libgcc_s.so.1 │ └── libstdc++.so.6.0.21 │ ├── uclibc_git.bb │ └── uclibc_git.bbappend ├── recipes-kernel ├── acm-gadget │ ├── acm-gadget.bb │ └── files │ │ └── acm-gadget ├── galileo-spi1-spidev │ ├── files │ │ ├── COPYING │ │ ├── Makefile │ │ └── galileo-spi1-spidev.c │ └── galileo-spi1-spidev_0.1.bb ├── galileo-uio-gpio │ ├── files │ │ ├── COPYING │ │ ├── Makefile │ │ └── galileo-uio-gpio.c │ └── galileo-uio-gpio_0.1.bb ├── galileogen2-fake │ ├── files │ │ ├── COPYING │ │ ├── Makefile │ │ └── galileogen2-fake.c │ └── galileogen2-fake_0.1.bb └── linux │ ├── configs │ ├── iot2000-example.cfg │ └── iot2000-example.scc │ ├── linux-cip-rt_4.4.bbappend │ └── linux-cip_4.4.bbappend ├── recipes-node ├── mindconnect-node-red-contrib-mindconnect │ ├── files │ │ └── npm-shrinkwrap.json │ └── mindconnect-node-red-contrib-mindconnect_3.9.1.bb ├── node-red-contrib-boolean-logic │ ├── files │ │ └── npm-shrinkwrap.json │ └── node-red-contrib-boolean-logic_0.0.3.bb ├── node-red-contrib-modbus │ ├── files │ │ └── npm-shrinkwrap.json │ └── node-red-contrib-modbus_5.13.3.bb ├── node-red-contrib-opcua │ ├── files │ │ └── npm-shrinkwrap.json │ └── node-red-contrib-opcua_0.2.88.bb ├── node-red-dashboard │ ├── files │ │ └── npm-shrinkwrap.json │ └── node-red-dashboard_2.23.4.bb ├── node-red-node-intel-gpio │ ├── files │ │ ├── 0001-intel-gpio-HTML-cleanups.patch │ │ ├── 0002-intel-gpio-Consistently-use-this-where-available.patch │ │ ├── 0003-intel-gpio-Add-support-for-initial-message-from-digi.patch │ │ ├── 0004-intel-gpio-Use-isrExit-in-favor-of-isr-m.EDGE_BOTH-n.patch │ │ ├── 0005-intel-gpio-Add-polling-of-input-pins-in-absence-of-i.patch │ │ ├── 0006-intel-gpio-Respect-user-defined-name-for-output-pin-.patch │ │ ├── 0007-intel-gpio-Mark-output-pin-13-as-LED-on-Galileo-v2.patch │ │ ├── 0008-intel-gpio-Add-support-for-user-button-on-Galileo-v2.patch │ │ ├── 0009-intel-gpio-Add-IOT2020-and-IOT2040-board-detection.patch │ │ ├── 0010-intel-gpio-Add-support-for-red-LED-of-IOT2040.patch │ │ └── 0011-intel-gpio-Privatize-version.patch │ └── node-red-node-intel-gpio_1.0.0-iot2000.bb ├── node-red-node-serialport │ ├── files │ │ └── npm-shrinkwrap.json │ └── node-red-node-serialport_0.11.0.bb ├── node-red-nodes │ └── node-red-nodes.bb └── node-red │ ├── files │ ├── node-red.init │ └── npm-shrinkwrap.json │ └── node-red_1.2.1.bb ├── recipes-support └── swupdate │ ├── swupdate │ ├── defconfig │ ├── progress_firmware.c │ ├── swupdate.cfg │ ├── swupdate_handlers.lua │ └── tools_makefile.patch │ └── swupdate_%.bbappend ├── recipes-tools └── setledcolor │ ├── files │ └── setledcolor.py │ └── setledcolor_0.1.bb └── scripts ├── extract_license └── lib └── wic └── canned-wks ├── example-image.iot2000.swupdate.wks └── example-image.iot2000.wks /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/README.md -------------------------------------------------------------------------------- /kas-bsp-rt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/kas-bsp-rt.yml -------------------------------------------------------------------------------- /kas-bsp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/kas-bsp.yml -------------------------------------------------------------------------------- /kas-example-rt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/kas-example-rt.yml -------------------------------------------------------------------------------- /kas-example-swupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/kas-example-swupdate.yml -------------------------------------------------------------------------------- /kas-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/kas-example.yml -------------------------------------------------------------------------------- /kas-sdk-linux-x64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/kas-sdk-linux-x64.yml -------------------------------------------------------------------------------- /kas-sdk-windows-i586.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/kas-sdk-windows-i586.yml -------------------------------------------------------------------------------- /meta-iot2000-bsp/COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/COPYING.GPLv2 -------------------------------------------------------------------------------- /meta-iot2000-bsp/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/COPYING.MIT -------------------------------------------------------------------------------- /meta-iot2000-bsp/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/conf/layer.conf -------------------------------------------------------------------------------- /meta-iot2000-bsp/conf/machine/include/intel-quark-common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/conf/machine/include/intel-quark-common.inc -------------------------------------------------------------------------------- /meta-iot2000-bsp/conf/machine/iot2000.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/conf/machine/iot2000.conf -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-bsp/acpi-upgrades/acpi-upgrades.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-bsp/acpi-upgrades/acpi-upgrades.bb -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-bsp/acpi-upgrades/tables/iot2000/ssdt-fixes.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-bsp/acpi-upgrades/tables/iot2000/ssdt-fixes.asl -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-bsp/formfactor/formfactor/iot2000/machconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-bsp/formfactor/formfactor/iot2000/machconfig -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-bsp/formfactor/formfactor_0.0.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" 2 | 3 | -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-core/ell/ell_0.22.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-core/ell/ell_0.22.bb -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-core/images/core-image-iot2000.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-core/images/core-image-iot2000.inc -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-core/images/core-image-minimal.bbappend: -------------------------------------------------------------------------------- 1 | require core-image-iot2000.inc 2 | -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-core/images/core-image-rt.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-core/images/core-image-rt.bb -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-core/images/wic-image.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-core/images/wic-image.inc -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/go/common/go-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/go/common/go-wrapper -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/go/go-cross-iot2000.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/go/go-cross-iot2000.inc -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/go/go-cross_1.6%.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/patches-1.6:" 2 | 3 | require go-cross-iot2000.inc 4 | -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/go/go-cross_1.6-dummy.bb: -------------------------------------------------------------------------------- 1 | # Dummy recipe in case meta-golang is not used 2 | LICENSE="" 3 | -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/go/go-cross_1.8%.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/patches-1.8:" 2 | 3 | require go-cross-iot2000.inc 4 | -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/go/go-cross_1.8-dummy.bb: -------------------------------------------------------------------------------- 1 | go-cross_1.6-dummy.bb -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/go/patches-1.6/0001-runtime-Implement-i386-atomic-quadword-ops-alternati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/go/patches-1.6/0001-runtime-Implement-i386-atomic-quadword-ops-alternati.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/go/patches-1.6/0002-Revert-runtime-check-and-fail-early-with-a-message-i.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/go/patches-1.6/0002-Revert-runtime-check-and-fail-early-with-a-message-i.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/go/patches-1.6/0003-cmd-internal-obj-x86-cmd-compile-internal-x86-Add-In.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/go/patches-1.6/0003-cmd-internal-obj-x86-cmd-compile-internal-x86-Add-In.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/go/patches-1.8/0001-runtime-Implement-i386-atomic-quadword-ops-alternati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/go/patches-1.8/0001-runtime-Implement-i386-atomic-quadword-ops-alternati.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/go/patches-1.8/0002-Revert-runtime-check-and-fail-early-with-a-message-i.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/go/patches-1.8/0002-Revert-runtime-check-and-fail-early-with-a-message-i.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/go/patches-1.8/0003-cmd-internal-obj-x86-cmd-compile-internal-x86-Add-In.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/go/patches-1.8/0003-cmd-internal-obj-x86-cmd-compile-internal-x86-Add-In.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0001-Restore-x87-port.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0001-Restore-x87-port.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0002-Switch-to-x87-mode-when-targeting-ia32.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0002-Switch-to-x87-mode-when-targeting-ia32.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0003-Relax-check-in-ComputeInputFrameSize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0003-Relax-check-in-ComputeInputFrameSize.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0004-py2to3-automatic-conversion-via-2to3-tool.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0004-py2to3-automatic-conversion-via-2to3-tool.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0005-py2to3-fix-configure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0005-py2to3-fix-configure.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0006-py2to3-fix-tools-gyp-pylib-gyp-input.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0006-py2to3-fix-tools-gyp-pylib-gyp-input.py.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0007-py2to3-fix-tools-configure.d-nodedownload.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0007-py2to3-fix-tools-configure.d-nodedownload.py.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0008-py2to3-deps-v8-gypfiles-toolchain.gypi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0008-py2to3-deps-v8-gypfiles-toolchain.gypi.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0009-py2to3-fix-tools-gyp-pylib-gyp-generator-make.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0009-py2to3-fix-tools-gyp-pylib-gyp-generator-make.py.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0010-py2to3-fix-tools-compress_json.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0010-py2to3-fix-tools-compress_json.py.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0011-py2to3-fix-tools-js2c.py-deps-v8-tools-js2c.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0011-py2to3-fix-tools-js2c.py-deps-v8-tools-js2c.py.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0012-py2to3-fix-deps-v8-tools-gen-postmortem-metadata.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0012-py2to3-fix-deps-v8-tools-gen-postmortem-metadata.py.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0013-py2to3-fix-async-keyword-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0013-py2to3-fix-async-keyword-error.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0014-py2to3-fix-deps-v8-third_party-jinja2-runtime.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0014-py2to3-fix-deps-v8-third_party-jinja2-runtime.py.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0015-py2to3-fix-gyp-samples-samples.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0015-py2to3-fix-gyp-samples-samples.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0016-py2to3-use-python3-for-node-gyp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0016-py2to3-use-python3-for-node-gyp.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0017-CVE-2019-15606.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0017-CVE-2019-15606.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0018-CVE-2019-15604.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0018-CVE-2019-15604.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0019-CVE-2019-15605.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0019-CVE-2019-15605.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0020-CVE-2020-8174.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0020-CVE-2020-8174.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0021-nghttp2_1.41.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0021-nghttp2_1.41.0.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0022-CVE-2020-11080.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0022-CVE-2020-11080.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0023-CVE-2020-8265.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0023-CVE-2020-8265.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0024-CVE-2020-8287.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0024-CVE-2020-8287.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0025-CVE-2021-22884.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0025-CVE-2021-22884.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0026-CVE-2021-22883.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0026-CVE-2021-22883.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0027-CVE-2021-22930.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0027-CVE-2021-22930.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0028-CVE-2021-22939.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0028-CVE-2021-22939.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0029-CVE-2021-44907.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0029-CVE-2021-44907.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0030-CVE-2022-0235.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0030-CVE-2022-0235.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0031-OpenSSL-1.1.1-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0031-OpenSSL-1.1.1-support.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0032-Fix-build-with-openssl-1.1.1d.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs/0032-Fix-build-with-openssl-1.1.1d.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs_8%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-devtools/nodejs/nodejs_8%.bbappend -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-devtools/nodejs/nodejs_8-dummy.bb: -------------------------------------------------------------------------------- 1 | # Dummy recipe in case nodejs 8 is not available 2 | LICENSE="" 3 | -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-extended/stress/stress_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-extended/stress/stress_%.bbappend -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-extended/stress/stress_0-dummy.bb: -------------------------------------------------------------------------------- 1 | # Dummy recipe in case stress is not available 2 | LICENSE="" 3 | -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/configs/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/configs/defconfig -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/configs/iot2000-cip-rt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/configs/iot2000-cip-rt.cfg -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/configs/iot2000-cip-rt.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/configs/iot2000-cip-rt.scc -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/configs/iot2000-mainline.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/configs/iot2000-mainline.cfg -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/configs/iot2000-mainline.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/configs/iot2000-mainline.scc -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/linux-cip-rt_4.4.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/linux-cip-rt_4.4.bb -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/linux-cip_4.4.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/linux-cip_4.4.bb -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/linux-cip_4.4.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/linux-cip_4.4.inc -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/linux-mainline-latest.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/linux-mainline-latest.bb -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0001-stmmac-pci-Make-stmmac_pci_info-structure-constant.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0001-stmmac-pci-Make-stmmac_pci_info-structure-constant.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0002-stmmac-pci-Use-stmmac_pci_info-for-all-devices.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0002-stmmac-pci-Use-stmmac_pci_info-for-all-devices.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0003-stmmac-pci-Make-stmmac_pci_find_phy_addr-truly-gener.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0003-stmmac-pci-Make-stmmac_pci_find_phy_addr-truly-gener.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0004-stmmac-pci-Select-quark_pci_dmi_data-from-quark_defa.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0004-stmmac-pci-Select-quark_pci_dmi_data-from-quark_defa.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0005-stmmac-pci-Use-dmi_system_id-table-for-retrieving-PH.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0005-stmmac-pci-Use-dmi_system_id-table-for-retrieving-PH.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0006-stmmac-pci-Adjust-IOT2000-matching.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0006-stmmac-pci-Adjust-IOT2000-matching.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0007-serial-8250_exar-Adjust-IOT2000-matching.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0007-serial-8250_exar-Adjust-IOT2000-matching.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0008-mfd-intel_quark_i2c_gpio-Adjust-IOT2000-matching.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0008-mfd-intel_quark_i2c_gpio-Adjust-IOT2000-matching.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0009-gpio-sch-use-gpiochip-data-pointer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0009-gpio-sch-use-gpiochip-data-pointer.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0010-gpio-sch-Use-devm_gpiochip_add_data-for-gpio-registr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0010-gpio-sch-Use-devm_gpiochip_add_data-for-gpio-registr.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0011-gpio-sch-Fix-Oops-on-module-load-on-Asus-Eee-PC-1201.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0011-gpio-sch-Fix-Oops-on-module-load-on-Asus-Eee-PC-1201.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0012-gpio-sch-Implement-.get_direction.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0012-gpio-sch-Implement-.get_direction.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0013-gpio-sch-Add-interrupt-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0013-gpio-sch-Add-interrupt-support.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0014-iot2000-hack-Work-around-DSDT-mistake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0014-iot2000-hack-Work-around-DSDT-mistake.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0015-iot2000-hack-Adjust-pca9685-gpio-base-for-legacy-com.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0015-iot2000-hack-Adjust-pca9685-gpio-base-for-legacy-com.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0016-iot2000-hack-gpio-pca953x-provide-GPIO-base-based-on.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0016-iot2000-hack-gpio-pca953x-provide-GPIO-base-based-on.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0017-iot2000-hack-gpio-pca953x-add-drive-property.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0017-iot2000-hack-gpio-pca953x-add-drive-property.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0018-iot2000-hack-pwm-pca-9685-Provide-chip-level-pwm_per.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0018-iot2000-hack-pwm-pca-9685-Provide-chip-level-pwm_per.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0019-random-replace-non-blocking-pool-with-a-Chacha20-bas.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0019-random-replace-non-blocking-pool-with-a-Chacha20-bas.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0020-random-make-dev-urandom-scalable-for-silly-userspace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0020-random-make-dev-urandom-scalable-for-silly-userspace.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0021-random-add-backtracking-protection-to-the-CRNG.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0021-random-add-backtracking-protection-to-the-CRNG.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0022-random-remove-stale-maybe_reseed_primary_crng.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0022-random-remove-stale-maybe_reseed_primary_crng.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0023-random-use-chacha20-for-get_random_int-long.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0023-random-use-chacha20-for-get_random_int-long.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0024-random-convert-get_random_int-long-into-get_random_u.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0024-random-convert-get_random_int-long-into-get_random_u.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0025-random-invalidate-batched-entropy-after-crng-init.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0025-random-invalidate-batched-entropy-after-crng-init.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0026-random-silence-compiler-warnings-and-fix-race.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0026-random-silence-compiler-warnings-and-fix-race.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0027-random-add-wait_for_random_bytes-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0027-random-add-wait_for_random_bytes-API.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0028-random-fix-crng_ready-test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0028-random-fix-crng_ready-test.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0029-random-use-a-different-mixing-algorithm-for-add_devi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0029-random-use-a-different-mixing-algorithm-for-add_devi.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0030-random-only-read-from-dev-random-after-its-pool-has-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0030-random-only-read-from-dev-random-after-its-pool-has-.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0031-random-fix-soft-lockup-when-trying-to-read-from-an-u.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0031-random-fix-soft-lockup-when-trying-to-read-from-an-u.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/0032-random-try-to-actively-add-entropy-rather-than-passi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/0032-random-try-to-actively-add-entropy-rather-than-passi.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/rt-0001-spi-pca2xx-pci-Allow-MSI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/rt-0001-spi-pca2xx-pci-Allow-MSI.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-kernel/linux/patches/rt-0002-gpio-dwapb-Work-around-RT-full-s-enforced-IRQ-thread.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-kernel/linux/patches/rt-0002-gpio-dwapb-Work-around-RT-full-s-enforced-IRQ-thread.patch -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-multimedia/ffmpeg/ffmpeg_%.bbappend: -------------------------------------------------------------------------------- 1 | def cpu(d): 2 | return "i586" 3 | -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-tools/switchmode/files/switchmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-tools/switchmode/files/switchmode.c -------------------------------------------------------------------------------- /meta-iot2000-bsp/recipes-tools/switchmode/switchmode_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/recipes-tools/switchmode/switchmode_0.1.bb -------------------------------------------------------------------------------- /meta-iot2000-bsp/scripts/lib/wic/canned-wks/common.iot2000.wks.footer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/scripts/lib/wic/canned-wks/common.iot2000.wks.footer.inc -------------------------------------------------------------------------------- /meta-iot2000-bsp/scripts/lib/wic/canned-wks/common.iot2000.wks.header.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/scripts/lib/wic/canned-wks/common.iot2000.wks.header.inc -------------------------------------------------------------------------------- /meta-iot2000-bsp/scripts/lib/wic/canned-wks/wic-image.iot2000.wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-bsp/scripts/lib/wic/canned-wks/wic-image.iot2000.wks -------------------------------------------------------------------------------- /meta-iot2000-example/COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/COPYING.GPLv2 -------------------------------------------------------------------------------- /meta-iot2000-example/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/COPYING.MIT -------------------------------------------------------------------------------- /meta-iot2000-example/README.SWUPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/README.SWUPDATE.md -------------------------------------------------------------------------------- /meta-iot2000-example/classes/npm-ng.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/classes/npm-ng.bbclass -------------------------------------------------------------------------------- /meta-iot2000-example/conf/distro/poky-iot2000.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/conf/distro/poky-iot2000.conf -------------------------------------------------------------------------------- /meta-iot2000-example/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/conf/layer.conf -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-connectivity/connman/connman_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-connectivity/connman/connman_%.bbappend -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-connectivity/connman/files/main.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | AlowHostnameUpdates=false 3 | NetworkInterfaceBlacklist=eth,wlan 4 | -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-connectivity/connman/files/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-connectivity/connman/files/settings -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-connectivity/openssl/files/0001-make-bnrand_range-reliable-with-deterministic-run-ti.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-connectivity/openssl/files/0001-make-bnrand_range-reliable-with-deterministic-run-ti.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-connectivity/openssl/openssl_1.1.%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-connectivity/openssl/openssl_1.1.%.bbappend -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-core/images/example-image-swu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-core/images/example-image-swu.inc -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-core/images/files/sw-description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-core/images/files/sw-description -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-core/images/iot2000-example-image-rt.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-core/images/iot2000-example-image-rt.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-core/images/iot2000-example-image-swu.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-core/images/iot2000-example-image-swu.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-core/images/iot2000-example-image.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-core/images/iot2000-example-image.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-core/images/iot2000-example-image.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-core/images/iot2000-example-image.inc -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-core/images/iot2000-update-image.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-core/images/iot2000-update-image.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-core/images/persiststore.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-core/images/persiststore.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-devtools/nodejs/nodejs/0001-Disable-running-gyp-files-for-bundled-deps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-devtools/nodejs/nodejs/0001-Disable-running-gyp-files-for-bundled-deps.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-devtools/nodejs/nodejs_8.17.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-devtools/nodejs/nodejs_8.17.0.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/busybox/busybox_1.31.%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-example/busybox/busybox_1.31.%.bbappend -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/busybox/files/arp.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_ARP=y -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/busybox/files/lsusb.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_LSUSB=y -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/busybox/files/nc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-example/busybox/files/nc.cfg -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/busybox/files/no-ext-dhcp.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP=n 2 | -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/busybox/files/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-example/busybox/files/ntp.conf -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/busybox/files/ntpclient.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-example/busybox/files/ntpclient.cfg -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/busybox/files/ntpd.busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-example/busybox/files/ntpd.busybox -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/init-ifupdown/files/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-example/init-ifupdown/files/interfaces -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/init-ifupdown/init-ifupdown_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-example/init-ifupdown/init-ifupdown_%.bbappend -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/iot2000setup/files/expandfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-example/iot2000setup/files/expandfs.sh -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/iot2000setup/files/iot2000setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-example/iot2000setup/files/iot2000setup.py -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/iot2000setup/iot2000setup_1.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-example/iot2000setup/iot2000setup_1.0.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/iot2000setup/mosquitto_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-example/iot2000setup/mosquitto_%.bbappend -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/modules/files/i2c-dev.conf: -------------------------------------------------------------------------------- 1 | i2c-dev 2 | -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/modules/files/ofono-module.conf: -------------------------------------------------------------------------------- 1 | tun 2 | -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-example/modules/modules-load-entries_1.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-example/modules/modules-load-entries_1.0.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-extended/mraa/mraa_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-extended/mraa/mraa_%.bbappend -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-sketch-reset.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-sketch-reset.service -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target.service -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/LICENSE -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/Makefile -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/Readme.txt -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/canit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/canit.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/clloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/clloader.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/clloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/clloader.h -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/config.h -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/crctab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/crctab.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/galileo-reset/galileo-reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/galileo-reset/galileo-reset.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/galileo-reset/galileo-reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/galileo-reset/galileo-reset.h -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/long-options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/long-options.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/long-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/long-options.h -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/lsyslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/lsyslog.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/protname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/protname.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/rbsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/rbsb.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/scripts/opt/cln/galileo/galileo_sketch_reset_script.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | systemctl restart galileo-target.service 4 | -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/scripts/opt/cln/galileo/sketch-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/scripts/opt/cln/galileo/sketch-setup.sh -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/tcp.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/timing.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/timing.h: -------------------------------------------------------------------------------- 1 | double timing __P ((int reset,time_t *now)); 2 | -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/xstrtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/xstrtol.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/xstrtol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/xstrtol.h -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/xstrtoul.c: -------------------------------------------------------------------------------- 1 | #define STRING_TO_UNSIGNED 1 2 | #include "xstrtol.c" 3 | -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/xstrtoul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/xstrtoul.h -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/zglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/zglobal.h -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/zm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/zm.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/zmodem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/zmodem.h -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/zperr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/zperr.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/zreadline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileo-target/zreadline.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/galileod.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/galileod.init -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/launcher.sh -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/files/r1_2_sketch_reset.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/files/r1_2_sketch_reset.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/galileo-target/galileo-target_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/galileo-target/galileo-target_0.1.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/site_config/funcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/site_config/funcs -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/site_config/headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/site_config/headers -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/site_config/types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/site_config/types -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc-config.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc-config.inc -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc-git.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc-git.inc -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc-git/0001-Disable-lrount_tes-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc-git/0001-Disable-lrount_tes-function.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc-git/locale.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc-git/locale.cfg -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc-git/obstack.cfg: -------------------------------------------------------------------------------- 1 | UCLIBC_HAS_OBSTACK=y 2 | -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc-git/uClibc.distro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc-git/uClibc.distro -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc-git/uClibc.machine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc-git/uClibc.machine -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc-package.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc-package.inc -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc.inc -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc/0001-dl-elf.c-never-look-in-shared-library-loader-for-lib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc/0001-dl-elf.c-never-look-in-shared-library-loader-for-lib.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc/0002-Very-hacky-solution-for-arduino-eeprom-compatibility.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc/0002-Very-hacky-solution-for-arduino-eeprom-compatibility.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc/config.cfg -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc/libgcc_s.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc/libgcc_s.so.1 -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc/libstdc++.so.6.0.21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc/libstdc++.so.6.0.21 -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc_git.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-galileo/uclibc/uclibc_git.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-galileo/uclibc/uclibc_git.bbappend -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/acm-gadget/acm-gadget.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/acm-gadget/acm-gadget.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/acm-gadget/files/acm-gadget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/acm-gadget/files/acm-gadget -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/galileo-spi1-spidev/files/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/galileo-spi1-spidev/files/COPYING -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/galileo-spi1-spidev/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/galileo-spi1-spidev/files/Makefile -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/galileo-spi1-spidev/files/galileo-spi1-spidev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/galileo-spi1-spidev/files/galileo-spi1-spidev.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/galileo-spi1-spidev/galileo-spi1-spidev_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/galileo-spi1-spidev/galileo-spi1-spidev_0.1.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/galileo-uio-gpio/files/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/galileo-uio-gpio/files/COPYING -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/galileo-uio-gpio/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/galileo-uio-gpio/files/Makefile -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/galileo-uio-gpio/files/galileo-uio-gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/galileo-uio-gpio/files/galileo-uio-gpio.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/galileo-uio-gpio/galileo-uio-gpio_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/galileo-uio-gpio/galileo-uio-gpio_0.1.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/galileogen2-fake/files/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/galileogen2-fake/files/COPYING -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/galileogen2-fake/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/galileogen2-fake/files/Makefile -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/galileogen2-fake/files/galileogen2-fake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/galileogen2-fake/files/galileogen2-fake.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/galileogen2-fake/galileogen2-fake_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/galileogen2-fake/galileogen2-fake_0.1.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/linux/configs/iot2000-example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/linux/configs/iot2000-example.cfg -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/linux/configs/iot2000-example.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/linux/configs/iot2000-example.scc -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/linux/linux-cip-rt_4.4.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/configs:" 2 | 3 | SRC_URI += "file://iot2000-example.scc" 4 | -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-kernel/linux/linux-cip_4.4.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-kernel/linux/linux-cip_4.4.bbappend -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/mindconnect-node-red-contrib-mindconnect/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/mindconnect-node-red-contrib-mindconnect/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/mindconnect-node-red-contrib-mindconnect/mindconnect-node-red-contrib-mindconnect_3.9.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/mindconnect-node-red-contrib-mindconnect/mindconnect-node-red-contrib-mindconnect_3.9.1.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-contrib-boolean-logic/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-contrib-boolean-logic/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-contrib-boolean-logic/node-red-contrib-boolean-logic_0.0.3.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-contrib-boolean-logic/node-red-contrib-boolean-logic_0.0.3.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-contrib-modbus/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-contrib-modbus/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-contrib-modbus/node-red-contrib-modbus_5.13.3.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-contrib-modbus/node-red-contrib-modbus_5.13.3.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-contrib-opcua/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-contrib-opcua/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-contrib-opcua/node-red-contrib-opcua_0.2.88.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-contrib-opcua/node-red-contrib-opcua_0.2.88.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-dashboard/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-dashboard/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-dashboard/node-red-dashboard_2.23.4.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-dashboard/node-red-dashboard_2.23.4.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0001-intel-gpio-HTML-cleanups.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0001-intel-gpio-HTML-cleanups.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0002-intel-gpio-Consistently-use-this-where-available.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0002-intel-gpio-Consistently-use-this-where-available.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0003-intel-gpio-Add-support-for-initial-message-from-digi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0003-intel-gpio-Add-support-for-initial-message-from-digi.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0004-intel-gpio-Use-isrExit-in-favor-of-isr-m.EDGE_BOTH-n.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0004-intel-gpio-Use-isrExit-in-favor-of-isr-m.EDGE_BOTH-n.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0005-intel-gpio-Add-polling-of-input-pins-in-absence-of-i.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0005-intel-gpio-Add-polling-of-input-pins-in-absence-of-i.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0006-intel-gpio-Respect-user-defined-name-for-output-pin-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0006-intel-gpio-Respect-user-defined-name-for-output-pin-.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0007-intel-gpio-Mark-output-pin-13-as-LED-on-Galileo-v2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0007-intel-gpio-Mark-output-pin-13-as-LED-on-Galileo-v2.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0008-intel-gpio-Add-support-for-user-button-on-Galileo-v2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0008-intel-gpio-Add-support-for-user-button-on-Galileo-v2.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0009-intel-gpio-Add-IOT2020-and-IOT2040-board-detection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0009-intel-gpio-Add-IOT2020-and-IOT2040-board-detection.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0010-intel-gpio-Add-support-for-red-LED-of-IOT2040.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0010-intel-gpio-Add-support-for-red-LED-of-IOT2040.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0011-intel-gpio-Privatize-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-intel-gpio/files/0011-intel-gpio-Privatize-version.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-intel-gpio/node-red-node-intel-gpio_1.0.0-iot2000.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-intel-gpio/node-red-node-intel-gpio_1.0.0-iot2000.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-serialport/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-serialport/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-node-serialport/node-red-node-serialport_0.11.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-node-serialport/node-red-node-serialport_0.11.0.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red-nodes/node-red-nodes.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red-nodes/node-red-nodes.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red/files/node-red.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red/files/node-red.init -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red/files/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red/files/npm-shrinkwrap.json -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-node/node-red/node-red_1.2.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-node/node-red/node-red_1.2.1.bb -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-support/swupdate/swupdate/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-support/swupdate/swupdate/defconfig -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-support/swupdate/swupdate/progress_firmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-support/swupdate/swupdate/progress_firmware.c -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-support/swupdate/swupdate/swupdate.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-support/swupdate/swupdate/swupdate.cfg -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-support/swupdate/swupdate/swupdate_handlers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-support/swupdate/swupdate/swupdate_handlers.lua -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-support/swupdate/swupdate/tools_makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-support/swupdate/swupdate/tools_makefile.patch -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-support/swupdate/swupdate_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-support/swupdate/swupdate_%.bbappend -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-tools/setledcolor/files/setledcolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-tools/setledcolor/files/setledcolor.py -------------------------------------------------------------------------------- /meta-iot2000-example/recipes-tools/setledcolor/setledcolor_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/recipes-tools/setledcolor/setledcolor_0.1.bb -------------------------------------------------------------------------------- /meta-iot2000-example/scripts/extract_license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/scripts/extract_license -------------------------------------------------------------------------------- /meta-iot2000-example/scripts/lib/wic/canned-wks/example-image.iot2000.swupdate.wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/scripts/lib/wic/canned-wks/example-image.iot2000.swupdate.wks -------------------------------------------------------------------------------- /meta-iot2000-example/scripts/lib/wic/canned-wks/example-image.iot2000.wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/meta-iot2000/HEAD/meta-iot2000-example/scripts/lib/wic/canned-wks/example-image.iot2000.wks --------------------------------------------------------------------------------