config: fix: replace undue export statements with declare -g; shellfmt

This commit is contained in:
Ricardo Pardini
2023-03-28 20:22:34 +02:00
committed by Igor Pečovnik
parent f51a99f1fa
commit 62f5fe1596
41 changed files with 203 additions and 207 deletions

View File

@@ -32,13 +32,13 @@ GOVERNOR=${GOVERNOR:-ondemand}
case $BRANCH in
current)
export KERNEL_MAJOR_MINOR="6.1" # Major and minor versions of this kernel. For mainline caching.
declare -g KERNEL_MAJOR_MINOR="6.1" # Major and minor versions of this kernel. For mainline caching.
KERNELBRANCH='branch:linux-6.1.y'
KERNELPATCHDIR='meson64-current'
;;
edge)
export KERNEL_MAJOR_MINOR="6.2" # Major and minor versions of this kernel. For mainline caching.
declare -g KERNEL_MAJOR_MINOR="6.2" # Major and minor versions of this kernel. For mainline caching.
KERNELBRANCH='branch:linux-6.2.y'
KERNELPATCHDIR='meson64-edge'
;;