diff options
Diffstat (limited to 'resources/scripts/update')
| -rwxr-xr-x | resources/scripts/update/coreboot/configs | 5 | ||||
| -rwxr-xr-x | resources/scripts/update/u-boot/configs | 4 | 
2 files changed, 4 insertions, 5 deletions
diff --git a/resources/scripts/update/coreboot/configs b/resources/scripts/update/coreboot/configs index cd5299b3..6637a340 100755 --- a/resources/scripts/update/coreboot/configs +++ b/resources/scripts/update/coreboot/configs @@ -1,10 +1,9 @@ -#!/usr/bin/env sh +#!/usr/bin/env bash  #  #  helper script: update coreboot configs (run make oldconfig)  #  #	Copyright (C) 2021 Leah Rowe <info@minifree.org> -#	Copyright (C) 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com>  #  #	This program is free software: you can redistribute it and/or modify  #	it under the terms of the GNU General Public License as published by @@ -55,7 +54,7 @@ updateconf()  	if [ -f "${boarddir}/board.cfg" ]; then  		cbtree="undefined" -		. "${boarddir}/board.cfg" # source +		source "${boarddir}/board.cfg" # source  		if [ "${cbtree}" = "undefined" ]; then  			return 0  		fi diff --git a/resources/scripts/update/u-boot/configs b/resources/scripts/update/u-boot/configs index b01ef0db..9b67eede 100755 --- a/resources/scripts/update/u-boot/configs +++ b/resources/scripts/update/u-boot/configs @@ -1,4 +1,4 @@ -#!/usr/bin/env sh +#!/usr/bin/env bash  #  #  helper script: update U-Boot configs (run make oldconfig) @@ -33,7 +33,7 @@ updateconf() {  	board="$1"  	if [ -f "resources/u-boot/${board}/board.cfg" ]; then          ubtree="undefined" -        . "resources/u-boot/${board}/board.cfg" # source +        source "resources/u-boot/${board}/board.cfg" # source          if [ "${ubtree}" = "undefined" ]; then              return 0          fi  | 
