package/rcw: new package

This package adds NXP Layerscape and QoriQ reset config word
(RCW) / pre-bootloader (PBL) generation support.

The RCW is used to setup clocking and IO allocations and then launches
the next stage of boot (usually u-boot).

Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Paresh Chaudhary 2019-01-16 06:39:52 -06:00 committed by Thomas Petazzoni
parent eada187e77
commit 89c03d0451
5 changed files with 37 additions and 0 deletions

View File

@ -1461,6 +1461,7 @@ F: package/python-posix-ipc/
F: package/python-pypcap/
F: package/python-pyrex/
F: package/raptor/
F: package/rcw/
F: package/rng-tools/
F: package/rsyslog/
F: package/setools/

View File

@ -53,6 +53,7 @@ menu "Host utilities"
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"

View File

@ -0,0 +1,12 @@
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/

3
package/rcw/rcw.hash Normal file
View File

@ -0,0 +1,3 @@
# Locally calculated
sha256 1421ada9fec10b12ff21cd9ad82f0a835b191cb2dde80f03547764574b1346c3 rcw-LSDK-18.12.tar.gz
sha256 a531b3146425e592db17a51ff39c4801cb01fb4055ffdaada0572decc0655bcd LICENSE

20
package/rcw/rcw.mk Normal file
View File

@ -0,0 +1,20 @@
################################################################################
#
# 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))