Konstantin Demin
8834da817c
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
24 lines
483 B
Bash
24 lines
483 B
Bash
#!/bin/zsh
|
|
|
|
kconf-set() {
|
|
local n v
|
|
n="${1:?}" v=$2
|
|
shift 2
|
|
|
|
[ $# -gt 0 ] || return 1
|
|
|
|
command grep -ElZ "^((CONFIG_)?$n=|# (CONFIG_)?$n is not set)" "$@" \
|
|
| xargs -0 -r sed -i -E -e "s/^(((CONFIG_)?$n)=.+|# ((CONFIG_)?$n) is not set)\$/\\2\\4=$v/"
|
|
}
|
|
|
|
kconf-unset() {
|
|
local n
|
|
n="${1:?}"
|
|
shift
|
|
|
|
[ $# -gt 0 ] || return 1
|
|
|
|
command grep -ElZ "^(CONFIG_)?$n=" "$@" \
|
|
| xargs -0 -r sed -i -E -e "s/^((CONFIG_)?$n)=.+\$/# \\1 is not set/"
|
|
}
|