File tree Expand file tree Collapse file tree
biglinux-improve-compatibility/usr/lib/systemd/system Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ [Unit]
2+ Description=Fix apps broken with this bug: https://sourceware.org/bugzilla/show_bug.cgi?id=32653
3+
4+ [Path]
5+ SystemCallArchitectures=native
6+ PathModified=/usr/local/bin/warsaw/core
7+ Unit=glibc2-41-fix.service
8+
9+ [Install]
10+ WantedBy=default.target
Original file line number Diff line number Diff line change 1+ [Unit]
2+ Description =Fix apps broken with this bug: https://sourceware.org/bugzilla/show_bug.cgi?id =32653
3+ StartLimitBurst =5
4+ StartLimitIntervalSec =1
5+
6+ [Service]
7+ SystemCallArchitectures =native
8+ Type =oneshot
9+ ExecStart =execstack -s /usr/local/bin/warsaw/core
10+
11+ [Install]
12+ WantedBy =default.target
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ pkgver=$(date +%y.%m.%d)
55pkgrel=$( date +%H%M)
66arch=(' any' )
77license=(' GPL' )
8- depends=(' start-stop-daemon' ' wxgtk3-runtime' ' ld-lsb' ' openssl-1.1' ' kdotool-git' ' linux-firmware' )
8+ depends=(' start-stop-daemon' ' wxgtk3-runtime' ' ld-lsb' ' openssl-1.1' ' kdotool-git' ' linux-firmware' ' execstack ' )
99provides=(' wxwidgets3.0=3.0.5-3' )
1010conflicts=(' wxwidgets3.0' )
1111replaces=(' wxwidgets3.0' )
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ post_install() {
33 systemctl start biglinux-improve-compatibility
44 systemctl enable suspend-bluetooth-fix
55 systemctl start suspend-bluetooth-fix
6+ systemctl enable glibc2-41-fix
7+ systemctl start glibc2-41-fix
68 systemctl --global enable big-execute-after-user-login
79 if [[ ! -e /etc/sysctl.d/90-sysrq.conf ]]; then
810 echo 'kernel.sysrq = 502' > /etc/sysctl.d/90-sysrq.conf
@@ -18,12 +20,15 @@ ProcessSizeMax=0' > /etc/systemd/coredump.conf.d/custom.conf
1820pre_remove() {
1921 systemctl disable biglinux-improve-compatibility
2022 systemctl disable suspend-bluetooth-fix
23+ systemctl disable glibc2-41-fix
2124}
2225
2326post_upgrade() {
2427 systemctl --global enable big-execute-after-user-login
2528 systemctl enable suspend-bluetooth-fix
2629 systemctl start suspend-bluetooth-fix
30+ systemctl enable glibc2-41-fix
31+ systemctl start glibc2-41-fix
2732 if [[ ! -e /etc/sysctl.d/90-sysrq.conf ]]; then
2833 echo 'kernel.sysrq = 502' > /etc/sysctl.d/90-sysrq.conf
2934 fi
You can’t perform that action at this time.
0 commit comments