F: package/python-pypcap/
F: package/python-pyrex/
F: package/raptor/
+F: package/rcw/
F: package/rng-tools/
F: package/rsyslog/
F: package/setools/
source "package/qemu/Config.in.host"
source "package/raspberrypi-usbboot/Config.in.host"
source "package/rauc/Config.in.host"
+ source "package/rcw/Config.in.host"
source "package/rustc/Config.in.host"
source "package/s6-rc/Config.in.host"
source "package/sam-ba/Config.in.host"
--- /dev/null
+config BR2_PACKAGE_HOST_RCW
+ bool "host rcw"
+ help
+ This package provides an reset configuration word(RCW)
+ compiler to build NXP QoriQ/LS PBL/RCW binary(s).
+
+ The package installs example configurations and scripts
+ for each devkit supported in the current release see
+ $(HOST_DIR)/share/rcw. Either a SDK or post scripts can
+ then use this toolset and examples.
+
+ https://source.codeaurora.org/external/qoriq/qoriq-components/rcw/
--- /dev/null
+# Locally calculated
+sha256 1421ada9fec10b12ff21cd9ad82f0a835b191cb2dde80f03547764574b1346c3 rcw-LSDK-18.12.tar.gz
+sha256 a531b3146425e592db17a51ff39c4801cb01fb4055ffdaada0572decc0655bcd LICENSE
--- /dev/null
+################################################################################
+#
+# rcw
+#
+################################################################################
+
+RCW_VERSION = LSDK-18.12
+RCW_SITE = https://source.codeaurora.org/external/qoriq/qoriq-components/rcw
+RCW_SITE_METHOD = git
+RCW_LICENSE = BSD-3-Clause
+RCW_LICENSE_FILES = LICENSE
+
+# Copy source files and script into $(HOST_DIR)/share/rcw/ so a developer
+# could use a post image or SDK to build/install PBL files.
+define HOST_RCW_INSTALL_CMDS
+ mkdir -p $(HOST_DIR)/share/rcw
+ cp -a $(@D)/* $(HOST_DIR)/share/rcw
+endef
+
+$(eval $(host-generic-package))