Skip to content

Commit

Permalink
Merge 6a14acd into ad8d240
Browse files Browse the repository at this point in the history
  • Loading branch information
skazi0 committed Jan 24, 2022
2 parents ad8d240 + 6a14acd commit a841b1e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
10 changes: 10 additions & 0 deletions package/yast2.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 24 21:04:10 UTC 2022 - Jacek Tomasiak <jtomasiak@suse.com>

- Preload libsuseconnect.so if avaiable. On aarch64 installer/YaST
sometimes failed to load libsuseconnect.so with "cannot allocate
memory in static TLS block" error.
Loading the library before others solves the problem until a better
solution is found (bsc#1194996).
- 4.3.39

-------------------------------------------------------------------
Fri Jan 21 15:41:19 UTC 2022 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2
Version: 4.4.38
Version: 4.4.39

Release: 0
Summary: YaST2 Main Package
Expand Down
5 changes: 5 additions & 0 deletions scripts/yast2
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
# wise ncurses. It starts then the module 'menu' which implements
# the configuration and administration menu.

# bsc#1194996: workaround for "cannot allocate memory in static TLS block"
if [ -f /usr/lib64/libsuseconnect.so ]; then
export LD_PRELOAD="/usr/lib64/libsuseconnect.so $LD_PRELOAD"
fi

# FATE#317637, bsc#877447: In installation system, we call the installer
# script directly and then exit
if [ -f /.instsys.config ]; then
Expand Down

0 comments on commit a841b1e

Please sign in to comment.