aboutsummaryrefslogtreecommitdiffstats
path: root/preparechroot.sh
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-03-23 14:04:35 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-03-23 14:04:35 -0500
commita9998650875c122d505c3046b23dc5f8590857f7 (patch)
tree68a96d364fbc8a28166d2b61a34ef424650d44d9 /preparechroot.sh
parentddc24ed59f6ad9f0e36258ece20bd3e04e88e5e0 (diff)
Use printf instead of echo.
Diffstat (limited to 'preparechroot.sh')
-rw-r--r--preparechroot.sh22
1 files changed, 11 insertions, 11 deletions
diff --git a/preparechroot.sh b/preparechroot.sh
index 302fd9b..b460175 100644
--- a/preparechroot.sh
+++ b/preparechroot.sh
@@ -5,12 +5,12 @@ source colors.sh
export LFS="$1"
if [ -z "${LFS}" ]; then
- echo -e "${RED}Require first argument as path to LFS build!${RST}"
+ printf "%b" "${RED}Require first argument as path to LFS build!${RST}\n"
exit 1
fi
if [ "${USER}" == "root" ]; then
- echo -e "${GRN}Changing ownership to root...${RST}"
+ printf "%b" "${GRN}Changing ownership to root...${RST}\n"
chown -R root:root "${LFS}"/bin
chown -R root:root "${LFS}"/etc
chown -R root:root "${LFS}"/lib
@@ -23,41 +23,41 @@ if [ "${USER}" == "root" ]; then
x86_64) chown -R root:root "${LFS}"/lib64 ;;
esac
- echo -e "${GRN}Creating virtual kernel filesystem mountpoints...${RST}"
+ printf "%b" "${GRN}Creating virtual kernel filesystem mountpoints...${RST}\n"
mkdir -p "${LFS}"/dev
mkdir -p "${LFS}"/proc
mkdir -p "${LFS}"/run
mkdir -p "${LFS}"/sys
- echo -e "${GRN}Creating initial device nodes...${RST}"
+ printf "%b" "${GRN}Creating initial device nodes...${RST}\n"
mknod -m 600 "${LFS}"/dev/console c 5 1 >/dev/null 2>&1
mknod -m 666 "${LFS}"/dev/null c 1 3 >/dev/null 2>&1
- echo -e "${GRN}Mounting virtual kernel filesystems...${RST}"
+ printf "%b" "${GRN}Mounting virtual kernel filesystems...${RST}\n"
if ! mountpoint "${LFS}"/dev >/dev/null 2>&1; then
mount -v --bind /dev "${LFS}"/dev
else
- echo -e " ${YLW}${LFS}/dev${GRN} is already mounted${RST}"
+ printf "%b" " ${YLW}${LFS}/dev${GRN} is already mounted${RST}\n"
fi
if ! mountpoint "${LFS}"/dev/pts >/dev/null 2>&1; then
mount -v --bind /dev/pts "${LFS}"/dev/pts
else
- echo -e " ${YLW}${LFS}/dev/pts${GRN} is already mounted${RST}"
+ printf "%b" " ${YLW}${LFS}/dev/pts${GRN} is already mounted${RST}\n"
fi
if ! mountpoint "${LFS}"/proc >/dev/null 2>&1; then
mount -v --bind /proc "${LFS}"/proc
else
- echo -e " ${YLW}${LFS}/proc${GRN} is already mounted${RST}"
+ printf "%b" " ${YLW}${LFS}/proc${GRN} is already mounted${RST}\n"
fi
if ! mountpoint "${LFS}"/sys >/dev/null 2>&1; then
mount -v --bind /sys "${LFS}"/sys
else
- echo -e " ${YLW}${LFS}/sys${GRN} is already mounted${RST}"
+ printf "%b" " ${YLW}${LFS}/sys${GRN} is already mounted${RST}\n"
fi
if ! mountpoint "${LFS}"/run >/dev/null 2>&1; then
mount -v --bind /run "${LFS}"/run
else
- echo -e " ${YLW}${LFS}/run${GRN} is already mounted${RST}"
+ printf "%b" " ${YLW}${LFS}/run${GRN} is already mounted${RST}\n"
fi
if [ -h "${LFS}"/dev/shm ]; then
@@ -65,5 +65,5 @@ if [ "${USER}" == "root" ]; then
fi
else
- echo -e "${RED}preparechroot.sh must be ran as ${YLW}root${RED} user!${RST}"
+ printf "%b" "${RED}preparechroot.sh must be ran as ${YLW}root${RED} user!${RST}\n"
fi