From f14c0f6529fb20fb312ecf8465b852c8ab13288f Mon Sep 17 00:00:00 2001 From: mglae Date: Thu, 27 Dec 2018 15:53:05 +0100 Subject: [PATCH] system-tools: version 110 - use login shell to source ~/.profile and make $HOME CWD when starting mrxvt - update changelog --- packages/addons/tools/system-tools/changelog.txt | 6 ++++++ packages/addons/tools/system-tools/package.mk | 4 ++-- packages/addons/tools/system-tools/source/default.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/packages/addons/tools/system-tools/changelog.txt b/packages/addons/tools/system-tools/changelog.txt index 7a0fc9beac..7387eaa82e 100644 --- a/packages/addons/tools/system-tools/changelog.txt +++ b/packages/addons/tools/system-tools/changelog.txt @@ -1,3 +1,9 @@ +110 +- updated and improved mc (4.8.21) +- using more compatible "xterm" TERM definition +- updated efibootmgr to 17 +- fixed screen + 109 - added stress-ng diff --git a/packages/addons/tools/system-tools/package.mk b/packages/addons/tools/system-tools/package.mk index 58de2f1a8c..d3ae9326ba 100644 --- a/packages/addons/tools/system-tools/package.mk +++ b/packages/addons/tools/system-tools/package.mk @@ -3,7 +3,7 @@ PKG_NAME="system-tools" PKG_VERSION="1.0" -PKG_REV="109" +PKG_REV="110" PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="https://libreelec.tv" @@ -72,7 +72,7 @@ addon() { cp -P $(get_build_dir dtach)/.$TARGET_NAME/dtach $ADDON_BUILD/$PKG_ADDON_ID/bin # efibootmgr - cp -P $(get_build_dir efibootmgr)/src/efibootmgr/efibootmgr $ADDON_BUILD/$PKG_ADDON_ID/bin 2>/dev/null || : + cp -P $(get_build_dir efibootmgr)/src/efibootmgr $ADDON_BUILD/$PKG_ADDON_ID/bin 2>/dev/null || : # encfs cp -P $(get_build_dir encfs)/.$TARGET_NAME/encfs $ADDON_BUILD/$PKG_ADDON_ID/bin diff --git a/packages/addons/tools/system-tools/source/default.py b/packages/addons/tools/system-tools/source/default.py index 8871ba9f68..fefa4dd76f 100644 --- a/packages/addons/tools/system-tools/source/default.py +++ b/packages/addons/tools/system-tools/source/default.py @@ -6,5 +6,5 @@ import subprocess yes = xbmcgui.Dialog().yesno('', 'This is a console-only addon','','Open a terminal window?','No','Yes') if yes: - subprocess.Popen(["systemd-run","sh","-c",". /etc/profile;exec mrxvt"], shell=False, close_fds=True) + subprocess.Popen(["systemd-run","sh","-c",". /etc/profile;cd;exec mrxvt -ls"], shell=False, close_fds=True)