summaryrefslogtreecommitdiff
path: root/resources/scripts/modify
diff options
context:
space:
mode:
Diffstat (limited to 'resources/scripts/modify')
-rwxr-xr-xresources/scripts/modify/coreboot/configs5
-rwxr-xr-xresources/scripts/modify/seabios/configs2
-rwxr-xr-xresources/scripts/modify/u-boot/configs5
3 files changed, 5 insertions, 7 deletions
diff --git a/resources/scripts/modify/coreboot/configs b/resources/scripts/modify/coreboot/configs
index 665ee091..89d253e3 100755
--- a/resources/scripts/modify/coreboot/configs
+++ b/resources/scripts/modify/coreboot/configs
@@ -1,9 +1,8 @@
-#!/usr/bin/env sh
+#!/usr/bin/env bash
# helper script: modify coreboot configs (run make menuconfig)
#
# Copyright (C) 2021, 2023 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
@@ -50,7 +49,7 @@ modifyconf() {
fi
cbtree=""
- . "resources/coreboot/${board}/board.cfg" # source
+ source "resources/coreboot/${board}/board.cfg" # source
if [ -z ${cbtree} ]; then
return 0
diff --git a/resources/scripts/modify/seabios/configs b/resources/scripts/modify/seabios/configs
index 614a4371..30423851 100755
--- a/resources/scripts/modify/seabios/configs
+++ b/resources/scripts/modify/seabios/configs
@@ -1,4 +1,4 @@
-#!/usr/bin/env sh
+#!/usr/bin/env bash
# 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 9572a5b8..b44aae47 100755
--- a/resources/scripts/modify/u-boot/configs
+++ b/resources/scripts/modify/u-boot/configs
@@ -1,9 +1,8 @@
-#!/usr/bin/env sh
+#!/usr/bin/env bash
# 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>
# Copyright (C) 2023 Leah Rowe <info@minifree.org>
#
# This program is free software: you can redistribute it and/or modify
@@ -51,7 +50,7 @@ modifyconf()
fi
ubtree="undefined"
- . "resources/u-boot/${board}/board.cfg" # source
+ source "resources/u-boot/${board}/board.cfg" # source
if [ "${ubtree}" = "undefined" ]; then
return 0