-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flatpak Warpinator 1.8.3 no longer starting after kernel update on Rasperry Pi 400, Debian 12 Bookworm #214
Comments
Seems like the kernel version is unable to be parsed: the + symbol is unexpected.
What was the version string on the previous kernel? Seems like they need to fix this |
Previous kernel version is I recently built deb package from source and I'm getting exactly the same error. So it's likely not dependent on packaging format, flatpak or deb.
|
You're right, it's because of the + in the kernel version. You can try modifying warpinator-launch.py: [03:00:16 PM] mtwebster@mintbox3:~/bin/warpinator[master *%]> git diff src/warpinator-launch.py
diff --git a/src/warpinator-launch.py b/src/warpinator-launch.py
index e06b0d05..a816ffbe 100644
--- a/src/warpinator-launch.py
+++ b/src/warpinator-launch.py
@@ -95,6 +95,8 @@ except ModuleNotFoundError as e:
except landlock.SyscallError as e:
if args.debug:
print("Landlock support unavailable: %s" % str(e))
+except ValueError:
+ pass
if args.mode:
if args.mode in supported_modes: |
Distribution
Debian 12 Bookworm, aarch64
Package version
1.8.3, flatpak package
Frequency
Always
Bug description
I installed it yesterday from flathub and it worked fine, today, after system update which upgraded the kernel to version 6.6.20+rpt-rpi-v8 it no longer launches. It crashes every time, reinstalling the package did not solve the issue.
Steps to reproduce
Click on the Warpinator shortcut in the start menu - nothing happens.
Launch it from terminal with the
flatpak run org.x.Warpinator
command - it spits out some traceback call and exits.Expected behavior
Application should launch if I click on its shortcut in the start menu or if I launch it in the terminal with the
flatpak run org.x.Warpinator
command.Additional information
The text was updated successfully, but these errors were encountered: