diff options
Diffstat (limited to 'resources/scripts/modify')
-rwxr-xr-x | resources/scripts/modify/coreboot/configs | 5 | ||||
-rwxr-xr-x | resources/scripts/modify/seabios/configs | 2 | ||||
-rwxr-xr-x | resources/scripts/modify/u-boot/configs | 5 |
3 files changed, 7 insertions, 5 deletions
diff --git a/resources/scripts/modify/coreboot/configs b/resources/scripts/modify/coreboot/configs index a61e7db5..434014c9 100755 --- a/resources/scripts/modify/coreboot/configs +++ b/resources/scripts/modify/coreboot/configs @@ -1,9 +1,10 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh # # helper script: modify coreboot configs (run make menuconfig) # # 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 @@ -32,7 +33,7 @@ modifyconf() { board="$1" if [ -f "resources/coreboot/${board}/board.cfg" ]; then cbtree="undefined" - source "resources/coreboot/${board}/board.cfg" + . "resources/coreboot/${board}/board.cfg" # source if [ "${cbtree}" = "undefined" ]; then return 0 fi diff --git a/resources/scripts/modify/seabios/configs b/resources/scripts/modify/seabios/configs index 17c94fec..e05a46bf 100755 --- a/resources/scripts/modify/seabios/configs +++ b/resources/scripts/modify/seabios/configs @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh # # helper script: modify coreboot configs (run make menuconfig) diff --git a/resources/scripts/modify/u-boot/configs b/resources/scripts/modify/u-boot/configs index dc17dd87..60dfdd8f 100755 --- a/resources/scripts/modify/u-boot/configs +++ b/resources/scripts/modify/u-boot/configs @@ -1,9 +1,10 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh # # helper script: modify U-Boot configs (run make menuconfig) # # Copyright (C) 2022 Alper Nebi Yasak <alpernebiyasak@gmail.com> +# 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 @@ -32,7 +33,7 @@ modifyconf() { board="$1" if [ -f "resources/u-boot/${board}/board.cfg" ]; then ubtree="undefined" - source "resources/u-boot/${board}/board.cfg" + . "resources/u-boot/${board}/board.cfg" # source if [ "${ubtree}" = "undefined" ]; then return 0 fi |