From 6d545d52ec9bafc46c09fc1bc0f77d0f35ee5cbf Mon Sep 17 00:00:00 2001 From: lgromero Date: Thu, 21 Nov 2024 12:06:01 +0100 Subject: [PATCH] refs #1161 adds old browser --- boottools/btog.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/boottools/btog.py b/boottools/btog.py index 3b4ded1..544b915 100644 --- a/boottools/btog.py +++ b/boottools/btog.py @@ -238,6 +238,9 @@ def copy_og_files (builder, og_shared, og_engine, ogclientmount, osdistrib, osco subprocess.run (f'rsync -aH {og_shared}/lib/qtlib/* {ogclientmount}/usr/local/lib', shell=True) subprocess.run (f'rsync -aH {og_shared}/lib/fonts {ogclientmount}/usr/local/lib', shell=True) subprocess.run (f'rsync -aH {og_shared}/lib/qtplugins/* {ogclientmount}/usr/local/plugins', shell=True) + + # Browser + if os.path.exists (f'{og_shared}/bin/browser'): shutil.copy (f'{og_shared}/bin/browser', f'{ogclientmount}/bin/') def sysctl (btrootfsmnt): logger.debug ('copiando sysctl.conf')