build: unify verbosity handlingThis change introduces a few helper variables for dealing with verboseand silent build modes: `silent`, `verbose`, `q` and `s`.The `silent` and `verbose` variables
build: unify verbosity handlingThis change introduces a few helper variables for dealing with verboseand silent build modes: `silent`, `verbose`, `q` and `s`.The `silent` and `verbose` variables are boolean values determiningwhether the build system has been configured to run silently orverbosely respectively (i.e. with `--silent` or `V=1`).These two modes cannot be used together - if `silent` is truthy then`verbose` is always falsy. As such: make --silent V=1... results in a silent build.In addition to these boolean variables, we also introduce two newvariables - `s` and `q` - for use in rule recipes to conditionallysuppress the output of commands.When building silently, `s` expands to a value which disables thecommand that follows, and `q` expands to a value which supppressesechoing of the command: $(s)echo 'This command is neither echoed nor executed' $(q)echo 'This command is executed but not echoed'When building verbosely, `s` expands to a value which disables thecommand that follows, and `q` expands to nothing: $(s)echo 'This command is neither echoed nor executed' $(q)echo 'This command is executed and echoed'In all other cases, both `s` and `q` expand to a value which suppressesechoing of the command that follows: $(s)echo 'This command is executed but not echoed' $(q)echo 'This command is executed but not echoed'The `s` variable is predominantly useful for `echo` commands, where youalways want to suppress echoing of the command itself, whilst `q` ismore useful for all other commands.Change-Id: I8d8ff6ed714d3cb401946c52955887ed7dca602bSigned-off-by: Chris Kay <chris.kay@arm.com>
show more ...
fix(nxp-drivers): fix sd secure boot failuresecure-boot: fix for sd boot mode failure:- Array for ROT Pub key hash is not cache aligned.Signed-off-by: Pankaj Gupta <pankaj.gupta@nxp.com>Signed-
fix(nxp-drivers): fix sd secure boot failuresecure-boot: fix for sd boot mode failure:- Array for ROT Pub key hash is not cache aligned.Signed-off-by: Pankaj Gupta <pankaj.gupta@nxp.com>Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>Change-Id: I7d1c1115066dd5323399f14b5c3667a1355d5671
refactor: moved drivers hdr files to include/drivers/nxpNXP drivers header files are moved: - from: drivers/nxp/<xx>/*.h - to : include/drivers/nxp/<xx>/*.hTo accommodate these changes eac
refactor: moved drivers hdr files to include/drivers/nxpNXP drivers header files are moved: - from: drivers/nxp/<xx>/*.h - to : include/drivers/nxp/<xx>/*.hTo accommodate these changes each drivers makefilesdrivers/nxp/<xx>/xx.mk, are updated.Signed-off-by: Pankaj Gupta <pankaj.gupta@nxp.com>Change-Id: I3979c509724d87e3d631a03dbafda1ee5ef07d21
nxp: cot using nxp internal and mbedtlsChain of trust(CoT) is enabled on NXP SoC in two ways:- Using MbedTLS, parsing X509 Certificates.- Using NXP internal method parsing CSF headerSigned-off-
nxp: cot using nxp internal and mbedtlsChain of trust(CoT) is enabled on NXP SoC in two ways:- Using MbedTLS, parsing X509 Certificates.- Using NXP internal method parsing CSF headerSigned-off-by: Ruchika Gupta <ruchika.gupta@nxp.com>Signed-off-by: Pankaj Gupta <pankaj.gupta@nxp.com>Change-Id: I78fb28516dfcfa667bebf8a1951ffb24bcab8de4