distribution/packages/sysutils/busybox/profile.d/98-busybox.conf
fewtarius bbb2975eed
* Move JELOS installation to tools menu, flashed images boot directly into JELOS now.
* Fix bug causing terminal output to appear on the console on x86_64 builds.
* Silence missing sudo warnings by aliasing it to nothing.
2022-12-04 15:46:38 -05:00

24 lines
493 B
Text

# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
# Copyright (C) 2021-present Fewtarius
. /etc/os-release
export HOME="/storage"
export PATH="/usr/bin:/usr/sbin"
export HOSTNAME=`cat /etc/hostname`
export PS1='\e[1;30m\h:\e[1;30m\w \e[0m\$ \e[0m'
# Redirect requests for sudo to nowhere.
alias sudo=''
case "$TERM" in
linux|nxterm|screen|xterm*)
;;
"")
export TERM="linux"
;;
*)
export TERM="xterm"
;;
esac