From e8701195e66f2d27ffe17fb514eae8173795aaf7 Mon Sep 17 00:00:00 2001 From: Georgiy Bondarenko <69736697+nehilo@users.noreply.github.com> Date: Thu, 4 Mar 2021 22:54:23 +0500 Subject: Initial commit --- buildroot/bin/opt_set | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 buildroot/bin/opt_set (limited to 'buildroot/bin/opt_set') diff --git a/buildroot/bin/opt_set b/buildroot/bin/opt_set new file mode 100644 index 0000000..a646e09 --- /dev/null +++ b/buildroot/bin/opt_set @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +# exit on first failure +set -e + +SED=$(which gsed || which sed) + +# Logic for returning nonzero based on answer here: https://stackoverflow.com/a/15966279/104648 +eval "${SED} -i '/\(\/\/\)*\([[:blank:]]*\)\(#define\s\+\b${1}\b\).*$/{s//\2\3 ${2}/;h};\${x;/./{x;q0};x;q9}' Marlin/Configuration.h" || +eval "${SED} -i '/\(\/\/\)*\([[:blank:]]*\)\(#define\s\+\b${1}\b\).*$/{s//\2\3 ${2}/;h};\${x;/./{x;q0};x;q9}' Marlin/Configuration_adv.h" || +eval "echo '#define ${@}' >>Marlin/Configuration_adv.h" || +(echo "ERROR: opt_set Can't set or add ${1}" >&2 && exit 9) -- cgit v1.2.3