27 lines
908 B
Plaintext
27 lines
908 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
#
|
||
|
|
# Copyright (c) Authors: https://www.armbian.com/authors
|
||
|
|
#
|
||
|
|
# This file is licensed under the terms of the GNU General Public
|
||
|
|
# License version 2. This program is licensed "as is" without any
|
||
|
|
# warranty of any kind, whether express or implied.
|
||
|
|
|
||
|
|
# DO NOT EDIT THIS FILE but add config options to /etc/default/orangepi-motd
|
||
|
|
# any changes will be lost on board support package update
|
||
|
|
|
||
|
|
THIS_SCRIPT="header"
|
||
|
|
MOTD_DISABLE=""
|
||
|
|
|
||
|
|
[[ -f /etc/default/orangepi-motd ]] && . /etc/default/orangepi-motd
|
||
|
|
|
||
|
|
for f in $MOTD_DISABLE; do
|
||
|
|
[[ $f == $THIS_SCRIPT ]] && exit 0
|
||
|
|
done
|
||
|
|
|
||
|
|
. /etc/os-release
|
||
|
|
. /etc/orangepi-release
|
||
|
|
|
||
|
|
KERNELID=$(uname -r)
|
||
|
|
TERM=linux toilet -f standard -F metal $(echo $BOARD_NAME | sed 's/Orange Pi/OPi/')
|
||
|
|
echo -e "Welcome to \e[0;91mOrange Pi ${VERSION} ${DISTRIBUTION_CODENAME^}\x1B[0m with $([[ $BRANCH == edge ]] && echo -e "\e[0;91mbleeding\x1B[0m edge " )\e[0;91mLinux $KERNELID\x1B[0m\n"
|