Merge pull request #4611 from lrusak/openelec-6.0-banner

thanks
This commit is contained in:
Christian Hewitt 2016-01-12 09:39:33 +04:00
commit 9b4dce8e08
2 changed files with 7 additions and 7 deletions

View File

@ -6,8 +6,8 @@
# Welcome Message for e.g. SSH Server (up to 5 Lines) # Welcome Message for e.g. SSH Server (up to 5 Lines)
GREETING0="##############################################" GREETING0="##############################################"
GREETING1="# ................ OpenELEC ................ #" GREETING1="# OpenELEC #"
GREETING2="# ........... http://openelec.tv ........... #" GREETING2="# http://openelec.tv #"
GREETING3="##############################################" GREETING3="##############################################"
GREETING4="" GREETING4=""

View File

@ -109,11 +109,11 @@ fi
fi fi
# create /etc/issue # create /etc/issue
echo $GREETING0 > $INSTALL/etc/issue echo "$GREETING0" > $INSTALL/etc/issue
echo $GREETING1 >> $INSTALL/etc/issue echo "$GREETING1" >> $INSTALL/etc/issue
echo $GREETING2 >> $INSTALL/etc/issue echo "$GREETING2" >> $INSTALL/etc/issue
echo $GREETING3 >> $INSTALL/etc/issue echo "$GREETING3" >> $INSTALL/etc/issue
echo $GREETING4 >> $INSTALL/etc/issue echo "$GREETING4" >> $INSTALL/etc/issue
echo "$DISTRONAME ($([ "$OFFICIAL" = "yes" ] && echo "official" || echo "community")) Version: $OPENELEC_VERSION" >> $INSTALL/etc/issue echo "$DISTRONAME ($([ "$OFFICIAL" = "yes" ] && echo "official" || echo "community")) Version: $OPENELEC_VERSION" >> $INSTALL/etc/issue
if [ -n "$GIT_HASH" ]; then if [ -n "$GIT_HASH" ]; then
echo "$DISTRONAME git: $GIT_HASH" >> $INSTALL/etc/issue echo "$DISTRONAME git: $GIT_HASH" >> $INSTALL/etc/issue