From 7141f3002246fab0e99b5270d2294ba23d1ecf98 Mon Sep 17 00:00:00 2001 From: cvh Date: Mon, 3 Jul 2017 13:18:16 +0200 Subject: [PATCH 1/2] scripts/image: cleanup shell output --- scripts/image | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/image b/scripts/image index c0f96fb74a..9c3d2cd975 100755 --- a/scripts/image +++ b/scripts/image @@ -148,10 +148,7 @@ echo "$GREETING1" >> $INSTALL/etc/issue echo "$GREETING2" >> $INSTALL/etc/issue echo "$GREETING3" >> $INSTALL/etc/issue echo "$GREETING4" >> $INSTALL/etc/issue -echo "$DISTRONAME ($LIBREELEC_BUILD) Version: $LIBREELEC_VERSION" >> $INSTALL/etc/issue -if [ "$DEVEL_VERSION" = "devel" ] ; then - echo "$DISTRONAME git: $GIT_HASH" >> $INSTALL/etc/issue -fi +echo "$DISTRONAME ($LIBREELEC_BUILD): $LIBREELEC_VERSION ($PROJECT $TARGET_ARCH)" >> $INSTALL/etc/issue ln -sf /etc/issue $INSTALL/etc/motd From 6b56b6fe8029e20c6ccb90d5151c0f01d8064d74 Mon Sep 17 00:00:00 2001 From: cvh Date: Mon, 3 Jul 2017 13:20:11 +0200 Subject: [PATCH 2/2] scripts/image: cleanup os-release --- scripts/image | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/image b/scripts/image index 9c3d2cd975..d3e458a8a4 100755 --- a/scripts/image +++ b/scripts/image @@ -134,7 +134,7 @@ echo -e "NAME=\"$DISTRONAME\"" > $INSTALL/etc/os-release echo -e "VERSION=\"$LIBREELEC_VERSION\"" >> $INSTALL/etc/os-release echo -e "ID=\"libreelec\"" >> $INSTALL/etc/os-release echo -e "VERSION_ID=\"$OS_VERSION\"" >> $INSTALL/etc/os-release -echo -e "PRETTY_NAME=\"$DISTRONAME ($LIBREELEC_BUILD) - Version: $LIBREELEC_VERSION\"" >> $INSTALL/etc/os-release +echo -e "PRETTY_NAME=\"$DISTRONAME ($LIBREELEC_BUILD): $LIBREELEC_VERSION\"" >> $INSTALL/etc/os-release echo -e "HOME_URL=\"https://libreelec.tv\"" >> $INSTALL/etc/os-release echo -e "BUG_REPORT_URL=\"$ORIGIN_URL\"" >> $INSTALL/etc/os-release echo -e "BUILD_ID=\"$GIT_HASH\"" >> $INSTALL/etc/os-release