summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRoland Hieber <rhi@pengutronix.de>2019-06-05 20:52:09 +0200
committerRobert Schwebel <r.schwebel@pengutronix.de>2019-06-05 21:07:22 +0200
commit984c1617231700da634c8e8aee59fc9966adb1ca (patch)
treeac125cd9c8b785ca349730a494775a9e6e25caff /scripts
parentfc9a3c01f3fcc27262563cd790f1b48b8e2c0390 (diff)
downloadDistroKit-984c1617231700da634c8e8aee59fc9966adb1ca.tar.gz
DistroKit-984c1617231700da634c8e8aee59fc9966adb1ca.tar.xz
v7a: bareboxes: use config diffs with the common reference config
Make it easier to maintain a common set of features and also review the device-specific changes between all the barebox variants by using the config diff mechanism which has been available since PTXdist 2019.01.0. No barebox config was harmed in the making of this patch, only their difference to the common reference config was computed. Also add a helper script to regenerate the config diffs after the common config was changed. Signed-off-by: Roland Hieber <rhi@pengutronix.de>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update-diffs-v7a.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/update-diffs-v7a.sh b/scripts/update-diffs-v7a.sh
new file mode 100755
index 0000000..72490d7
--- /dev/null
+++ b/scripts/update-diffs-v7a.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+BAREBOXES="barebox-common barebox-am335x barebox-mx6 barebox-rpi2 barebox-vexpress"
+for pkg in $BAREBOXES; do
+ ptxdist oldconfig $pkg
+done