aboutsummaryrefslogtreecommitdiff
path: root/utils/uvol
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2022-04-04 11:57:29 +0100
committerDaniel Golle <daniel@makrotopia.org>2022-04-04 11:58:37 +0100
commit31f02d5c1e1fcad0205ac814f52014ed8906db79 (patch)
tree070d4f334e16cc4258b08f56a59333df9de4754f /utils/uvol
parent74caff0d5988b721c08b9a8e35bce79a3d167dd6 (diff)
uvol: yet another small compatibility hack
Shift ARGV until actual parameters start to compensate for older versions of ucode passing the complete cmdline. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'utils/uvol')
-rw-r--r--utils/uvol/files/uvol13
1 files changed, 12 insertions, 1 deletions
diff --git a/utils/uvol/files/uvol b/utils/uvol/files/uvol
index 6a5a82c13..a4f023ffd 100644
--- a/utils/uvol/files/uvol
+++ b/utils/uvol/files/uvol
@@ -64,7 +64,18 @@ if (!backend) {
exit(2);
}
-let cmd = shift(ARGV);
+// The below code is needed as older versions of ucode pass the complete cmdline via ARGV
+// Once we can rely in more recent ucode the while loop can be replaced by simply
+// let cmd = shift(ARGV);
+let skip = null;
+let cmd = null;
+let skip_argv = ["/usr/bin/ucode", "-R", "/usr/sbin/uvol"];
+while (skip = shift(ARGV)) {
+ if (skip != shift(skip_argv)) {
+ cmd = skip;
+ break;
+ }
+}
if (!cmd || cmd == "-h" || cmd == "help") {
printf("%s", help_output);