summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2020-07-02 18:37:59 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2020-07-02 18:37:59 (EDT)
commitff1dad00276a48cb86d8b12b5762d30fcba27c38 (patch)
tree87bc6550fb41c075d4e43cafb374b3fda4563e68
parentdcf9e96aa3a3530b6f0e6afba8dc0c102b89dd51 (diff)
profile/proteanos: Make constant names uppercase
-rw-r--r--src/profile/proteanos.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/profile/proteanos.sh b/src/profile/proteanos.sh
index 3bed6c4..b9b41e3 100644
--- a/src/profile/proteanos.sh
+++ b/src/profile/proteanos.sh
@@ -18,13 +18,13 @@
# along with the ProteanOS Development Kit. If not, see
# <http://www.gnu.org/licenses/>.
-_prof_proteanos_fstab_linux="\
+_PROF_PROTEANOS_FSTAB_LINUX="\
proc /proc proc defaults
sys /sys sysfs defaults
/dev /dev none bind
devpts /dev/pts devpts noexec,nosuid,gid=5,mode=0620
"
-_prof_proteanos_install_service=\
+_PROF_PROTEANOS_INSTALL_SERVICE=\
'#!/bin/sh /etc/rc.common
start()
@@ -244,7 +244,7 @@ prof_proteanos_get_fstab()
case "${arch}" in
*-linux-*)
- printf '%s\n' "${_prof_proteanos_fstab_linux}"
+ printf '%s\n' "${_PROF_PROTEANOS_FSTAB_LINUX}"
;;
esac
}
@@ -318,7 +318,7 @@ prof_proteanos_configure_system_foreign()
local plat="${3}"
shift 3
- printf '%s' "${_prof_proteanos_install_service}" \
+ printf '%s' "${_PROF_PROTEANOS_INSTALL_SERVICE}" \
>"${root}/etc/rc.d/S10install"
chmod -- 0755 "${root}/etc/rc.d/S10install"
printf 'proteanos\n' >"${root}/etc/hostname"