summaryrefslogtreecommitdiffstats
path: root/rules/rauc.in
diff options
context:
space:
mode:
authorFlorian Bäuerle <florian.baeuerle@allegion.com>2018-09-26 16:56:00 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2018-09-27 10:28:57 +0200
commitebdf39487964d78ed42b25bc484d635e8646082b (patch)
treebaa4c343244012ceafece0c5207cf33caf54b9e9 /rules/rauc.in
parentdcd51a2584e8eee81953969e34b87393f4922665 (diff)
downloadptxdist-ebdf39487964d78ed42b25bc484d635e8646082b.tar.gz
ptxdist-ebdf39487964d78ed42b25bc484d635e8646082b.tar.xz
rauc: make installation of system configuration optional
This allows for installation of the rauc system configuration via an extra package, which is useful in scenarios involving image packages. Signed-off-by: Florian Bäuerle <florian.baeuerle@allegion.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/rauc.in')
-rw-r--r--rules/rauc.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/rules/rauc.in b/rules/rauc.in
index b2fea4bf6..190eb0b51 100644
--- a/rules/rauc.in
+++ b/rules/rauc.in
@@ -22,6 +22,15 @@ config RAUC_JSON
bool
prompt "JSON support"
+config RAUC_CONFIGURATION
+ prompt "Install RAUC configuration in /etc/rauc"
+ bool
+ default y
+ help
+ Install a default RAUC configuration that works for most projects.
+
+if RAUC_CONFIGURATION
+
config RAUC_COMPATIBLE
prompt "RAUC Compatible"
string
@@ -41,3 +50,5 @@ config RAUC_BUNDLE_VERSION
Overwrite the bundle version if needed.
endif
+
+endif