From e3ac8f4c2c7ec051879a72a6ce0bdf3817c5028b Mon Sep 17 00:00:00 2001 From: gutosie Date: Tue, 6 Dec 2022 07:29:52 +0200 Subject: [PATCH] Update extract.py --- NeoBoot/extract.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NeoBoot/extract.py b/NeoBoot/extract.py index 6f8edb8..9d465a4 100644 --- a/NeoBoot/extract.py +++ b/NeoBoot/extract.py @@ -669,6 +669,8 @@ def NEOBootMainEx(source, target, CopyFiles, CopyKernel, TvList, LanWlan, Sterow if os.path.exists('%s/ImageBoot/%s/usr/lib' % (media, target)): cmd = 'cp -af /usr/lib/periodon ' + getNeoLocation() + 'ImageBoot/%s/usr/lib/' % target rc = os.system(cmd) + cmd = 'mkdir -p ' + getNeoLocation() + 'ImageBoot/%s/usr/lib/enigma2/python/Tools/' % target + rc = os.system(cmd) cmd = 'cp -af /usr/lib/enigma2/python/Tools/Testinout.py ' + getNeoLocation() + 'ImageBoot/%s/usr/lib/enigma2/python/Tools/' % target rc = os.system(cmd) os.system('mkdir -p ' + media_target + '/media/hdd' + dev_null)