OpenPandora Main OS

This project it to track issues relating to the current shipping OS only as found here http://goo.gl/S5JCy. Please state what Hotfix you are running with any issue report. Please ONLY use this to record issues for the main OS and its default included applications - any other application issue reports should go into the Additional Applications project. Issue reports with 'in development OS images' or feature requests for the next MAJOR version (not Hotfix release) should be placed into the OpenPandora Development OS project and reported on the mailing list http://openpandora.org/cgi-bin/mailman/listinfo/firmware-dev. Please read this page to find out how to properly report bugs: http://pandorawiki.org/Reporting_bugs

IDCategoryTask TypeSeveritySummaryStatusProgress  desc
 232 CoreBug ReportLow HF6 - charged completed with lid closed causing keyboar ...Closed
100%
Task Description HF6 - It seems as when charging finishes with pandora on then charge light goes out (charge completed assuming) keyboard not functioning just gamepad. Can't use letters to cycle through in mini minimenu or use space to pull up ovr settings. Will test further
 235 CoreBug ReportLow File /tmp/currentuser cannot be deleted by other users Closed
100%
Task Description The system creates a file /tmp/currentuser at the first login of a user. After logging out and in as another user the file still contains the previous user name. An cannot be deleted/overwritten by the new user. Steps To Reproduce: At least two users are available and have XFCE GUI enabled. 1. Login as user (eg. guest), a file /tmp/currentuser is created (containing guest) 2. Log out 3. Log in as another user (eg. jgeiss), the file still contains the old name 4. Change GUI to PMenu 5. Log out 6. Log in as first user (guest) Now the first user (guest) has PMenu as GUI which was set by the second user (jgeiss). Maybe the permission should be 0666 for this file?
 241 ApplicationFeature RequestLow MiniMenu shall remember state for next start Closed
100%
Task Description With the setting "Live (not exit) on app run?" set to "NO" the currently selected tab and item shall be remembered, so that you return to the same state, in which you left MiniMenu.
 247 CoreBug ReportLow pnd_make.sh can't handle PND with spaces in the path Closed
100%
Task Description pnd_make.sh can't handle PND with spaces in the path. For example, if the label of the volume where the PND is saved, has spacebars. The Problem is line 655: 655: PND=$(readlink -f $PND) Bash handles a path with spacebars as two seperate arguments for the readlink command. The problem is, that i don't know a solution for this problem.
 264 CoreBug ReportLow Issues with HOTFIX 6 R1 Beta Closed
100%
Task Description I started with hotfix 5 and when I used the Left Nub for mouse movement it performed well. I installed HOTFIX 6 R1 Beta and the Nub works fine except pushing up. It moves the cursor very slow and all other directions just fine. The other nub works just fine as well. This only began after I installed HF6R1B. I also had to install the Hotfix twice due to sustained system freeze upon start up on the first attempt. I enabled gui choice but minimenu does not function it just cycles back to GUI choice.
 266 ApplicationBug ReportLow hf6rc: Unable to enter Low Power Mode with lid shut: Closed
100%
Task Description Since hf6rc was installed I am unable to enter low power mode. I did pull up the new lid config settings script and selected switch off screen. Reproducable. Nothing happens when the power switch is moved fully to the right for a short time. I expect it to entry low power mode. quirky for it not too. workaround: easy - enter LPM before closing lid. btw: unable to select hf6 in reported version.
 268 CoreBug ReportLow HF6: error in op_power.sh Closed
100%
Task Description When powering the system off after it has been in low power state once, an error is reported by op_power.sh, line 173. Unfortunately I don't have the full message as it's visible on the console only for a short time before the screen turns off. From looking at the script, the "fi" in the last line might be superfluous.
 275 CoreFeature RequestLow User should be a member of the cdrom group Closed
100%
Task Description These permissions are needed for CD/DVD burning/player apps. From bdc88595d8af726b3bf4745ece310f92299d8759 Mon Sep 17 00:00:00 2001 From: Paul Dersey Date: Sun, 19 Feb 2012 17:22:41 -0500 Subject: [PATCH] pandora-first-run-wizard: add user to cdrom group --- recipes/pandora-system/pandora-first-run-wizard.bb | 2 +- .../pandora-first-run-wizard/first-run-wizard.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/pandora-system/pandora-first-run-wizard.bb b/recipes/pandora-system/pandora-first-run-wizard.bb index 904dc4a..a63dc0c 100755 --- a/recipes/pandora-system/pandora-first-run-wizard.bb +++ b/recipes/pandora-system/pandora-first-run-wizard.bb @@ -6,7 +6,7 @@ RDEPENDS = "hsetroot zenity dbus pandora-wallpaper-official tslib tslib-calibrat COMPATIBLE_MACHINE = "omap3-pandora" -PR = "r28" +PR = "r29" SRC_URI = " \ file://first-run-wizard.sh \ diff --git a/recipes/pandora-system/pandora-first-run-wizard/first-run-wizard.sh b/recipes/pandora-system/pandora-first-run-wizard/first-run-wizard.sh index a801e3f..f30b80e 100755 --- a/recipes/pandora-system/pandora-first-run-wizard/first-run-wizard.sh +++ b/recipes/pandora-system/pandora-first-run-wizard/first-run-wizard.sh @@ -88,7 +88,7 @@ while ! username=$(zenity --title="Enter your username" --entry --text "Please c zenity --title="Error" --error --text="Please try again." --timeout 6 done -while ! useradd -c "$name,,," -G adm,audio,video,netdev,wheel,plugdev,users "$username" ; do +while ! useradd -c "$name,,," -G adm,audio,cdrom,netdev,plugdev,users,video,wheel "$username" ; do username=$(zenity --title="Please check username" --entry --text "Please ensure that your username consists of only\nletters and numbers and is not already in use on the system." --entry-text "$username") done -- 1.7.8.3
 276 CoreFeature RequestLow Kernel 3.2.x: add script to activate zram Closed
100%
Task Description Please add a script to activate zram (RAM compression) when using the new kernel. More info about how to do this is available in this post: http://boards.openpandora.org/index.php?/topic/7844-superzaxxon-beta-3-released/#entry138834 http://boards.openpandora.org/index.php?/topic/7226-superzaxxon-beta-11-released/page__st__20#entry128665 Please be aware though that Linux-SWAT had to explicitly set a value in "/sys/block/zram0/disksize" to get it work with Slackware. Over here the following is automatically set: pandora:~$ cat /sys/block/zram0/disksize 61648896 Sadly I can *not* change this value, even using sudo: pandora:~$ ls -l /sys/block/zram0/disksize -rw-r--r-- 1 root root 4096 Apr 9 12:51 /sys/block/zram0/disksize pandora:~$ cat /sys/block/zram0/disksize 61648896 pandora:~$ sudo echo 61648888 > /sys/block/zram0/disksize -bash: /sys/block/zram0/disksize: Permission denied Basically the following commands are required in a startup script to automatically create the "compressed swap inside RAM" aka zram (possibly a check if the modprobe was successful makes sense as well as checking for the size of the created ramdisk): modprobe zram mkswap /dev/zram0 swapon -p 5 /dev/zram0
 278 CoreBug ReportLow Kernel 3.2.x: broken middle click on right nub Closed
100%
Task Description Using kernel 3.2.x middle click with the right nub is no longer working. With the "old" kernel you get a middle click when pushing the right nub down, this is no longer the case when eg using SuperZaxxon Beta3 (was already the case in SuperZaxxon Beta1 with kernel 3.2.1). As long as you are using kernel 2.6.27.x middle click is working as expected.
 294 CoreBug ReportLow Left nub not working with kernel 3.2 Closed
100%
Task Description Left nub doesnt work when powering on into SuperZaxxon Final with kernel 3.2. Rebooting into kernel 2.6 fixes it until sleeping or powering off. After which rebooting into 2.6 is once again necessary to get the left nub working.
 298 ApplicationBug ReportLow Mousepad only searches once Closed
100%
Task Description Whenever I search text in an open Mouspad document, it works fine the first time. As soon as I close the search dialogue and re-open it, the "find" (resp "find and replace" in replace dialogue) button is greyed out and unclickable. (This is the state the dialogue is in before typing anything, but this time, typing doesn't help.) "return" also doesn't work. Only help is closing and reopening Mousepad.
 302 CoreBug ReportLow Correct keymap not available during login process Closed
100%
Task Description The correct keymap, as matching the characters printed on the keys, is available when running the First Boot Wizard, but not during login. This means that special characters like ! ( ) and so on, which you enter via Fn-[2nd key] cannot currently be used in a username nor password. My first experience with my Pandora was therefore that I had to reflash the OS due to this as I had locked myself out because I used a special character in my first chosen password. Also reported here: http://boards.openpandora.org/index.php?/topic/10112-question-mark/#entry188179
 303 CoreBug ReportLow pppd 2.4.3 has a bug, recommend upgrade to ppp 2.4.5  Closed
100%
Task Description pppd 2.4.3 doesnt auto reconnect (in my setup) even if configured to do so (persist). Found a ppp bug report confirming this ( http://ppp.samba.org/cgi-bin/ppp-bugs/resolved?id=1110;user=guest - "ppp-2.4.3 / pppoe not reconnecting") and that it has been fixed. I compiled pppd 2.4.5 and that reconnects just fine.
 304 CoreBug ReportLow bluetooth serial port sleep causes lost / frozen connec ...Closed
100%
Task Description I experienced (reliably) 3 times that if I had an idle ppp/rfcomm connection to my phone, it would eventually freeze so that the phone reported no active bluetooth connection and the pandora ppp would still think that the connection is active, but no data would flow. Killing pppd and re-trying would fail opening of the rfcomm link with "Host is down". Disabling & enabling bluetooth "fixed" this so that pppd worked again (so it is not the phone that was "down"). Adding these lines to op_bluetooth_work.sh (apparently atleast) fixed it for me: add between lines 14-15: echo 0 > /sys/devices/platform/omap_uart.0/sleep_timeout (or at any place during enable for that matter) And to disable (before exit 0, line 30) to save power when bluetooth is off and restore normal settings: echo 10 > /sys/devices/platform/omap_uart.0/sleep_timeout I remember mentioning this way back when I last tested bluetooth, but got a reply that this should not be needed because we have flow control between the bt chip and pandora. But if a sleeping serial port loses a character when somebody sends a burst to it, what could flow control do? If it reported not ready to receive, the character would never be sent (and things would freeze...). If it reports ready to receive (what I think it does) the character will be lost. One would need to periodically disable the serial port sleep (and enable ready to receive) for a moment to check for pending data, but I think this would use more power than keeping the serial port active and/or possibly cause way too big delays. I'm not really certain of this thing (whether this is a workaround, hack or a real fix... and whether my interpretation of what is happening is correct - i have no real proof), but I think that reporting what I've found is better than not. (And am I the only user of bluetooth with an old phone for internet (ppp+rfcomm, not pan)? ...)
 305 CoreBug ReportLow [PATCH] bluetooth startup doesnt restore enabled state Closed
100%
Task Description op_bluetooth.sh doesnt remember to call op_bluetooth_work.sh in the startup case. Patch inlined here (maybe broken, but for fast reading) and behind link: http://urjaman.dyndns.info/bluetooth-startup-fix.patch --- op_bluetooth.sh.org 2012-11-24 01:54:53.000000000 +0000 +++ op_bluetooth.sh 2012-11-24 02:06:51.000000000 +0000 @@ -7,8 +7,13 @@ cd "$HOME" if [ "$1" = "startup" ]; then - [ -f "$LOCK" ] && sudo /usr/sbin/hciconfig "$INTERFACE" up pscan 1>/dev/null && sudo /usr/sbin/bluetoothd || echo "Bluetooth: User has not enabled Bluetooth." - + if [ -f "$LOCK" ]; then + sudo /usr/pandora/scripts/op_bluetooth_work.sh 1 + INTERFACE="`hciconfig | grep "^hci" | cut -d ':' -f 1`" + sudo /usr/sbin/hciconfig "$INTERFACE" up pscan 1>/dev/null && sudo /usr/sbin/bluetoothd + else + echo "Bluetooth: User has not enabled Bluetooth." + fi else # Figure out if Bluetooth is running or not
 306 CoreBug ReportLow Issue with Network Notification pop-ups Closed
100%
Task Description Clicking on the button in a notification used when WiFi is enabled (such as the one stating that Wireless Networks were found), doesn't close the notification. In order to close it, I have to click the X button that's in the top-left.
 312 CoreBug ReportLow Special character in password Closed
100%
Task Description problem: setting a username and password using first setup wizzard it's possible to set special character like @#*%/ ect... the login manager don't support this characters, so you need to reset the device. possible solution: 1. disable the possibility of setting special characters. 2. implement special characters in login manager.
 313 CoreBug ReportLow WiFi LED Not Triggered on First Activation Closed
100%
Task Description The first time WiFi is enabled after boot, using either the the config button menu or the Toggle WiFi menu option the WiFi LED does not light up. (though the WiFi itself does work) Once it has been enabled and disabled for the first time, it will work normally for subsequent uses of the WiFi toggle. If the Toggle WiFi script is launched for the first time from the terminal the LED does light up. This is the case in SuperZaxxon 1.53 with all current upgrades applied, and reportedly since the introduction of SuperZaxxon. checking /sys/class/leds/pandora::wifi/trigger while the WiFi is enabled but the LED off shows that the trigger has been successfully set to phy0radio Also noted while investigating this: If Wifi is enabled for the first time from the terminal the following errors are generated by /etc/init.d/wl1251-init Usage: insmod filename [args] find: /lib/modules/3.2.30/updates: No such file or directory Usage: insmod filename [args] find: /lib/modules/3.2.30/updates: No such file or directory Usage: insmod filename [args] find: /lib/modules/3.2.30/updates: No such file or directory Usage: insmod filename [args] find: /lib/modules/3.2.30/updates: No such file or directory Usage: insmod filename [args] Usage: insmod filename [args] Usage: insmod filename [args] find: /lib/modules/3.2.30/updates: No such file or directory Usage: insmod filename [args] find: /lib/modules/3.2.30/updates: No such file or directory Usage: insmod filename [args] find: /lib/modules/3.2.30/updates: No such file or directory Usage: insmod filename [args] find: /lib/modules/3.2.30/updates: No such file or directory Usage: insmod filename [args] The commands that generate these errors are only executed if the mac80211 module is not already loaded - and that module is not unloaded when wifi is disabled. This seems to be unrelated to the issue being reported, however I can't see any cause for the issue at all, so I figured it was worth including it in the report anyway.
 314 CoreBug ReportLow Pandora-Button doesn't open XFCE menu Closed
100%
Task Description If you enable the "disapear automaticaly" feature in the XFCE panel, the Pandora button doesn't open the main menu anymore and you need to open it manually with the cursor.
 321 CoreFeature RequestLow Support overriding all category fields with .ovr Closed
100%
Task Description

Currently only the main category and the first sub category of the main category can be overridden using a .ovr file while libpnd uses additional PXML supplied category date to construct the desktop file. This makes it difficult to work with PNDs that supply unwanted data in these additional fields.

 322 CoreBug ReportLow Allow removal of categories using the libpnd category c ...Closed
100%
Task Description

Since some PNDs provide nonstandard categories like GTK or GNOME, it is desirable to extend the libpnd category mapping with the ability to suppress individual categories completely.

 334 CoreBug ReportLow op_bright_down.sh: error when decreasing brightness Closed
100%
Task Description

The script does not handle brightness "0".

If you try to decrease brightness if it's already at 0, it produces errors:

~ # /usr/pandora/scripts/op_bright_down.sh /usr/pandora/scripts/op_bright_down.sh: line 18: [: : integer expression expected /usr/pandora/scripts/op_bright_down.sh: line 22: echo: write error: Invalid argument

Not sure how to attach a patch here, but you can get the change with:

git pull git://git.assembla.com/openpandora-oe.git bug-333

I also changed the script to use /bin/sh since it's a valid posix script.

 337 CoreBug ReportLow SPAM Closed
100%
Task Description

SPAM

 23 CoreBug ReportVery Low slim-init doesn't pass session to .xinitrc Closed
100%
Task Description It seems like slim doesn't send the session to .xinitrc I included an "echo $1 >> ~/debug.txt" in the script and the file was completely empty. That's why it always starts xfce4, not pmenu: The fallback is startxfce4.
 37 CoreBug ReportVery Low Game doesn't start in No-X mode (pnd_run.sh) (Permissi ...Closed
100%
Task Description EDIT: Some more information from notaz: it's failing because it can't find controlling tty (/dev/tty is a "virtual" gateway device, so setting permissions gave no effect) do "ps ax" on your desktop and it has the tty column so SDL fbdev driver wants to get a real tty fo be able to read keys So we need to somehow give it a real tty? yeah, but I don't know why as pnd start from X and that gives virtual tty *don't know how* maybe something can be done using openvt, chvt and similar tools ------ What happens if you run a script in no-X mode: 1. It stops slim 2. It mounts all the directories as needed (works fine). 3. It DOES NOT start the app 4. It unmounts all the directories 5. It restarts slim (and therefore X) I can confirm the path is correctly and the filesystem is mounted there (did an ls -l). I can also confirm the game is working fine, as the same PND does work within X if I run it from the terminal using pnd_run supertux_noX.pnd So it looks like the line that actually executes the game does work when run in X, but not when run outside of X. Maybe it tries to execute the game on the screen where the script is actually started (X) and therefore can't run it as X is not running anymore? The line working in X-mode but not working in non-X-Mode: LD_LIBRARY_PATH=/mnt/utmp/$BASENAME ./$EXENAME $ARGUMENTS The game I tried was SuperTux (SDL-Game) with a no-X=1 parameter in the PXML.
 78 CoreBug ReportVery Low minimenu - zaxxon initial release - doesn't use preview ...Closed
100%
Task Description Stupid; in the /etc/pandora/conf/mmenu.conf the preview cache is looked for in mmcblk[12]* .. should be [01] or really just /media/*/pandora... etc. So just switch [12] to [01] and works fine. Fixed in the git tree already, so will roll out in a real image build.
 86 Base OSFeature RequestVery Low Including small development frameworks/projects in the  ...Closed
100%
Task Description It could be nice, if some very small development frameworks were included in the OS since the Pandora should make it as easy as possible for beginners to start programming. That means: A "Start coding now"-wizard/script can be run from the desktop from which you select the type of project (c++, python, SDL...) you want to do. It copies the framework to SD-Card, opens it in an editor/IDE to see the sourcecode and leads you to the first compile and run. Can be combined with a PND-Packer-script. Ideas for frameworks: - a small python template (pygame?) - a template project for an SDL-project (red square in fullscreen) - a template project for OpenGL ES (a simple colored triangle) - a template project for using NEON or DSP - something with a GUI (QT?) - general HelloWorlds - all as simple as possible! I know that this could help many beginners to actually start programming because the first compile is often hardest step (setting up toolchain, hassle with libs, includes, dependencies, compiler options, choice of editor, makefiles, all that stuff). Feel free to delete this feature request if it doesn't fit into the bugtracker.
 102 Base OSBug ReportVery Low Pandora key does not close XFCE menu  Closed
100%
Task Description If the XFCE menu has been opened by a touchscreen command, it can also be closed by hitting the logo again. However, opening the menu this way and then hitting the Pandora key only spawns more instances of the menu. Least intrusive way to close those seems to be to select "Logout" and hit Cancel.
 126 ApplicationBug ReportVery Low CPU Speed Typo? Closed
100%
Task Description If you set the CPU speed to 600 it warns that it is greater than 600. I thought 600 was the guaranteed speed?
 149 Base OSBug ReportVery Low Resets if Battery is removed - but power is still pluge ...Closed
100%
Task Description The Pandora resets if the battery is removed - even though its plugged to the AC Adapter. the power disapears for a second, and then the pandora notices that the power cable is actually plugged in, and immediately starts the pandora again
 175 CoreTo Do (Reminder)Very Low Test Closed
100%
Task Description Test if the edit button in the bug tracker works now. //Edit: Blah
 233 CoreBug ReportVery Low op_power.sh: errors Closed
100%
Task Description op_power.sh gives some errors to me... it works anyway, but it's not nice to see them all the time. /usr/pandora/scripts/op_power.sh: line 60: [: 5380: binary operator expected or /usr/pandora/scripts/op_power.sh: line 60: [: too many arguments I guess line 60 of op_power.sh if [ ! $wlstate ]; then should rather be if [ -z "$wlstate" ]; then shouldn't it? The same thing is in line Then sometimes also rm: cannot remove `/tmp/wlstate': No such file or directory or cat: /tmp/wlstate: No such file or directory which could easily be fixed by adding a test -f /tmp/wlstate && or something like that before the respective command. I just added a lot of test, I'm not sure if every single one of them is really needed, but better too much than not enough, I would say. :-) I can't attach a file (I click the button and nothing happens), so I just paste it there: http://nopaste.info/2256365eba.html It's a bit longer because some indentations were wrong (and I corrected them) and I changed all indentations to tabs = 8 spaces instead of 2.
227CoreBug ReportLowDelete button won't delete, and function lock doesn't w...Unconfirmed
50%
Task Description If you hit the function button, then hit it again to lock the function keys, it doesn't lock the function key. The delete key, hold shift and hit the back space button, it won't delete, meaning it won't remove the character to the right of the cursor. I saw this on the forum, and confirmed it on my pandora also.
250ApplicationFeature RequestMediumFile Browser Thunar - Trashing file crosses filesystem ...Researching
30%
Task Description Trashing a file/folder seems to MOVE it to a certain trash directory on the MAIN VOLUME, rather then the ORIGINATING VOLUME, hence this can result in a COPY RATHER THAN A MOVE operation, if the trashed file originates from a filesystem other than the main filesystem! This is very inefficient and faulty as it is: a) Very time consuming b) And in case of large files this operation can even fail due to not enough free space on the main volume.
216ApplicationTo Do (Reminder)LowToDo - SD manager tool (backup homedir/restore, prepare...New
30%
Task Description Should make up a simple zenity script tool .. - backup -> pick SD -> backs up current user's homedor to SD. (tar.gz format so permissions can be kept; not cpio/etc, too annoying for user.) -> keep rolling, or just one copy? - restore -> pick SD -> pick user -> confirm -> wipe home and restore with version from tarball? (or just unpack in-place, so existing new files are kept) -> prepare SD -> pick SD -> mkdir /pandora/menu and /pandora/desktop
 108 Base OSFeature RequestCritical TUN/TAN-Driver Closed
0%
Task Description There is no TUN/TAN Driver installed. This is recommanded for some encrypted wireless lan connections, especially for eduroam, a world wide access point for the education community. Also, a tun-driver is also recommended for vpnc.
223CoreBug ReportHighop_power.sh kills gles contextUnconfirmed
0%
Task Description opengles and op_power.sh don't like each other very much. whenever returning from low power to full power mode again, opengles rendering is just dead. the reason for this issue are following 2 lines within op_power.sh 18 echo 0 > /sys/devices/platform/omapfb/graphics/fb0/blank ... 66 echo 1 > /sys/devices/platform/omapfb/graphics/fb0/blank if these lines are removed/commented, the gles rendering just resumes fine.
229CoreBug ReportHighEnable wake on alarm interrupts Unconfirmed
0%
Task Description Found I'd kept some notes about making the Pandora's wake on alarm function work... drivers/rtc/rtc-twl4030.c twl4030_rtc_remove (for when the driver is removed) and twl4030_rtc_ shutdown (for when the system is shutdown) functions need to change. Or at least the shut down does. oh YUK who's been using goto.... changes in drivers/rtc/rtc-twl4030.c twl4030_rtc_remove commented out //mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M); twl4030_rtc_shutdown replaced // mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M | // BIT_RTC_INTERRUPTS_REG_IT_ALARM_M); with mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M); twl4030_rtc_suspend replaced // mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M | // BIT_RTC_INTERRUPTS_REG_IT_ALARM_M); with mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M); twl4030_rtc_init added (before return!) twl4030_rtc_alarm_irq_set_state(true); Should probably check reg 0x2B with mask 0x08 to see if alarm should be left enabled or not ? but only in twl4030_rtc_shutdown and ?remove? NOT in twl4030_rtc_init should remove ever happen ??? I'm guessing it's best to not enable the alarm irq's all the time???
261CoreTo Do (Reminder)HighOverview of all current KEYBOARD INPUT related issuesUnconfirmed
0%
Task Description Built-in keyboard input is a central thing on the Pandora, as it concerns almost all user interfaced apps! I realized that I myself and also others submitted quite many reports concerning this issue. Hence this meta issue is intended as an overview/accumulation/aid for those devs who are willing to overwork the whole issue. If you realize new related issues, feel free to add them here. If this my effort is contradicting the OpenPandora workflow, then pardon me, and instruct me, how else to handle issues of that kind. Thanks! Keyboard low level: Driver, keyboard layout, post processing (hotkeys, input support, etc) FS#138 FS#227 FS#242  FS#259  Keyboard mid level: Application interfacing  FS#102  FS#123 FS#238 Keyboard application internal level  FS#157  (dupe:  FS#249 ) FS#243 FS#256
 99 CoreBug ReportMedium After waking up from standby the system is not responsi ...Closed
0%
Task Description If I resume after standby (moved the slider to the right), the pandora shows the desktop and I can move the mouse cursor but if I click something, nothing happens. IRC suggested that the CPU might still be clocked at the standby low power speed.
121Base OSBug ReportMediumPyGame Hardware supportNew
0%
Task Description PyGame is damn slow (games with scrolling are not at all playable). Would be nice if Hardware surface could be used :)
155CoreBug ReportMediumCritical problems after rescaling GLES2 X windowsUnconfirmed
0%
Task Description When a X window which is displaying GLES2 render output is: - Either dragged out of the visibile screen region (?) - Is made larger than it was at the creation time of the GLES2 context then: - The performance will drop significantly as the EGL buffer swaps won't occur as fast as before, - The render output will be corrupted and flicker - In rare occasions crashes the application or locks up the entire system (which forces you to remove the battery) The problem can not be solved without restarting the application (Possibly forcing players to complete the same goals again as they were unable to reach a savepoint or similar things). This was confirmed in Mupen64Plus and the PowerVR GLES Samples and some of my own projects (which are, however, based on the PowerVR samples). As I didn't see any other reports about this problems (but had it confirmed by other Pandora users too) I would expect that it can be fixed by using a newer X, kernel or combination of them as other OMAP users would be effected too.
158Base OSBug ReportMediumRefresh rate and BPPUnconfirmed
0%
Task Description On OS Zaxon (hotfix 3). With "xfconf-query", the resolution is 800x480@60 Hz. But with the tool in the menu "Settings" -> "Display", the resolution is 800x480@0 Hz. With Java (opensdk-6-jre 6b18-1.8), GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDisplayModes() return 1 display mode that is 800x480@0 Hz with a BPP of -1. It seems to be the reason that GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDisplayMode() return null and when closing a java application that goes in fullscreen mode to throw an exception (invalid display mode).
159Base OSBug ReportMediumSystem > Run PND Application menu item does nothingUnconfirmed
0%
Task Description With both Hotfix 3 and Hotfix 4 Beta the Run PND Application menu item fails to do anything. Possibly related problem is that PND files newly copied to SD card are not recognized and entered on desktop as expected. When you go to Thunar and right click - execute the PND file, nothing happens. Possible fix by copying the PND to another folder on the SD card with Thunar. This makes at least two PND files I had work. Still no response with "Run PND Application" menu, though.
190CoreBug ReportMediumRemoving desktop-shortkeys does not workUnconfirmed
0%
Task Description Try clearing shortcuts in Start->Settings->Window Manager->Keyboard. That doesn't work (for me). This is a problem because these shortcuts are blocking key-combination in apps, like for example the keymapper in dosbox (CTRL+F1) or refreshing content (CTRL+F5). I tried manual editing or even deleting the configuration file, but changes are not recognized and the file recreated on reboot.
204CoreBug ReportMediumfonts issuesUnconfirmed
0%
Task Description Ok, I just want to say that there is something missing about the font on the base image. I cant get what (at least for now) Here is an issue : http://www.gp32x.com/board/index.php?/topic/54282-getting-vnc-viewer-to-work/ With my current Ogre build I get : Warning: Unable to load any usable ISO8859 font Error: Aborting: no font found I've googled but so far no solution :(
209CoreFeature RequestMediumShutdown after a full chargeUnconfirmed
0%
Task Description That still need to be configurable, but chris_c does a good job I'ld like to see integraded in the main image : http://www.gp32x.com/board/index.php?/topic/58794-a-script-to-shutdown-after-charging/ and : http://chrisc.bedroomcoders.co.uk/?p=77
210CoreFeature RequestMediumWader - cross platform graphical assistant for 3g conne...Unconfirmed
0%
Task Description http://www.wader-project.org http://trac.wader-project.org http://trac.wader-project.org/wiki/Developers this would be really usefull to monitor reception/network of mobile broadband dongle and it also counts ur mobile data usage (for those that have limits).
225CoreBug ReportMediumads7846 reports odd pressure valuesUnconfirmed
0%
Task Description using evdev xorg drivers and not the tslib drivers you can receive pressure axis data however there is a problem with the values reported by the ads7846 module and the evdev driver has no calibration property for pressure using xinput test touchscreen you can see the pressure axis ranging from 120-ish for hard press to about 150-170 for light press (low pressure values can be quite erratic) I could possibly hack the evdev module to possibly do something with this odd and narrow range of values, but I rather think looking at the source that the ads7846 module needs some work. is there a git tag that has a known working configuration? as I've had problems getting the kernel to compile the last few times I attempted...
Showing tasks 201 - 250 of 311 Page 5 of 7<<First - 3 - 4 - 5 - 6 - 7 -

Available keyboard shortcuts

Tasklist

Task Details

Task Editing