Send buglog mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.openmoko.org/mailman/listinfo/buglog
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]
You can reach the person managing the list at
[EMAIL PROTECTED]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of buglog digest..."
Today's Topics:
1. Re: Openmoko Bug #2053: Host OS gtk-config affects Toolchain
cross compile (in a wrong way) (Openmoko Public Trac)
2. Re: Openmoko Bug #2053: Host OS gtk-config affects Toolchain
cross compile (in a wrong way) (Openmoko Public Trac)
3. Re: Openmoko Bug #1599: Suspend / resume breaks audio
(Openmoko Public Trac)
4. Re: Openmoko Bug #1244: Xglamo doesn't handle switch to
landscape mode correctly (was: Swap orientation horizontal view
not calibrated) (Openmoko Public Trac)
5. Re: Openmoko Bug #2052: cannot install packages on card
(Openmoko Public Trac)
6. Re: Openmoko Bug #1957: Installer is complaining about
libopk, if there is no internet (Openmoko Public Trac)
7. Re: Openmoko Bug #1957: Installer is complaining about
libopk, if there is no internet (Openmoko Public Trac)
8. Re: Openmoko Bug #1024: gsm modem oscillating between
registrated / not-registrated (Openmoko Public Trac)
--- Begin Message ---
#2053: Host OS gtk-config affects Toolchain cross compile (in a wrong way)
-------------------------------+--------------------------------------------
Reporter: kempelen | Owner: openmoko-devel
Type: defect | Status: closed
Priority: normal | Milestone:
Component: host utilities | Version: Om2008.9-dev
Severity: normal | Resolution: worksforme
Keywords: | Blockedby:
Reproducible: | Blocking:
-------------------------------+--------------------------------------------
Changes (by zecke):
* status: new => closed
* resolution: => worksforme
Comment:
I don't know where to start:
- gtk-config is from the Gtk+1.2 times and this was replaced by the
generic pkg-config utility which honors PKG_CONFIG_PATH (which is set) and
the SYSROOT path
- xbill's configure.ac is simply executing "gtk-config" and find that
in your path and is using the result... again with pkg-config this would
not happend
- xbill's buildsystem should search for the tool called arm-angstrom
...-gtk-config but it does not.
- xbill's buildsystem is not within the control of Openmoko.
Try irc (feel free to message me for help) or a development mailinglist to
get support in compiling software. Your options are basicly go for native
building, go for insane stuff like scratchbox, cope with broken
buildsystems and fix them.
Sorry, but I think this should not be handled in this bugtracker.
--
Ticket URL: <https://docs.openmoko.org/trac/ticket/2053#comment:1>
docs.openmoko.org <http://docs.openmoko.org/trac/>
openmoko trac
--- End Message ---
--- Begin Message ---
#2053: Host OS gtk-config affects Toolchain cross compile (in a wrong way)
-------------------------------+--------------------------------------------
Reporter: kempelen | Owner: openmoko-devel
Type: defect | Status: closed
Priority: normal | Milestone:
Component: host utilities | Version: Om2008.9-dev
Severity: normal | Resolution: worksforme
Keywords: | Blockedby:
Reproducible: | Blocking:
-------------------------------+--------------------------------------------
Comment(by kempelen):
Ok, thanks, I did not know gtk-config is old. I was tricked by their
homepage saying this is completely new version updated to current
automake, gtk..... (Last update: 2002.) :-)
I'll check these pkg-config and automake things...
--
Ticket URL: <https://docs.openmoko.org/trac/ticket/2053#comment:2>
docs.openmoko.org <http://docs.openmoko.org/trac/>
openmoko trac
--- End Message ---
--- Begin Message ---
#1599: Suspend / resume breaks audio
-------------------------------------------+--------------------------------
Reporter: phyce | Owner: openmoko-kernel
Type: defect | Status: new
Priority: normal | Milestone: Om2007.2
Component: System Software | Version: GTA02v5
Severity: normal | Resolution:
Keywords: sound audio suspend resume | Blockedby:
Reproducible: | Blocking:
-------------------------------------------+--------------------------------
Comment(by gcasse):
Some dmesg messages for hopefully completing bug #1599.
* aplay is suspended (apm -s) on the FR, after resume, no more sound: the
aplay process is hanging.
* dmesg:
ALSA sound/core/pcm_lib.c:155: BUG: stream = 0, pos = 0x28c8000, buffer
size = 0x4000, period size = 0x400
(line 155: snd_pcm_update_hw_ptr_pos).
If the hanging aplay process is nuked then another aplay can be started
successfully.
-----------------------------------------------
More details:
* kernel 2.6.24 (5 Oct git origin/stable), defconfig-gta02 +
CONFIG_SND_VERBOSE_PRINTK=y, CONFIG_SND_DEBUG, CONFIG_SND_DEBUG_DETECT,
CONFIG_SND_S3C24XX_SOC_NEO1973_WM8753_DEBUG
* alsa 1.0.15
* dmesg:
...
glamo-mci glamo-mci.0: powered (vdd = 20) clk: 16666kHz div=2 (req:
16666kHz). Bus width=2
soc-audio soc-audio: scheduling resume work
PM: Finishing wakeup.
Restarting tasks ... <6>soc-audio soc-audio: starting resume work
done.
usb0: full speed config #1: 500 mA, Ethernet Gadget, using CDC Ethernet
soc-audio soc-audio: resume work completed
dma2: channel has nothing loaded
ALSA sound/core/pcm_lib.c:155: BUG: stream = 0, pos = 0x28c8000, buffer
size = 0x4000, period size = 0x400
ALSA sound/core/pcm_lib.c:155: BUG: stream = 0, pos = 0x28c8000, buffer
size = 0x4000, period size = 0x400
...
* File sound/core/pcm_lib.c, line 155:
...
static inline snd_pcm_uframes_t snd_pcm_update_hw_ptr_pos(struct
snd_pcm_substream *substream,
struct
snd_pcm_runtime *runtime)
{
snd_pcm_uframes_t pos;
pos = substream->ops->pointer(substream);
if (pos == SNDRV_PCM_POS_XRUN)
return pos; /* XRUN */
if (runtime->tstamp_mode & SNDRV_PCM_TSTAMP_MMAP)
getnstimeofday((struct timespec
*)&runtime->status->tstamp);
#ifdef CONFIG_SND_DEBUG
if (pos >= runtime->buffer_size) {
snd_printk(KERN_ERR "BUG: stream = %i, pos = 0x%lx,
buffer size = 0x%lx, period size = 0x%lx\n", substream->stream, pos,
runtime->buffer_size, runtime->period_size);
}
#endif
pos -= pos % runtime->min_align;
return pos;
}
...
--
Ticket URL: <https://docs.openmoko.org/trac/ticket/1599#comment:24>
docs.openmoko.org <http://docs.openmoko.org/trac/>
openmoko trac
--- End Message ---
--- Begin Message ---
#1244: Xglamo doesn't handle switch to landscape mode correctly (was: Swap
orientation horizontal view not calibrated)
-------------------------------+--------------------------------------------
Reporter: [EMAIL PROTECTED] | Owner: [EMAIL PROTECTED]
Type: defect | Status: reopened
Priority: highest | Milestone:
Component: System Software | Version:
Severity: major | Resolution:
Keywords: | Blockedby:
Blocking: |
-------------------------------+--------------------------------------------
Comment(by chgros):
Any chance this patch might make it into 2008.10 or whatever the next
update is? It's important as it allows to play vga resolution games.
Thanks!
--
Ticket URL: <https://docs.openmoko.org/trac/ticket/1244#comment:47>
docs.openmoko.org <http://docs.openmoko.org/trac/>
openmoko trac
--- End Message ---
--- Begin Message ---
#2052: cannot install packages on card
-----------------------+----------------------------------------------------
Reporter: goldie | Owner: tick
Type: defect | Status: accepted
Priority: normal | Milestone:
Component: opkg | Version:
Severity: normal | Resolution:
Keywords: | Blockedby:
Reproducible: always | Blocking:
-----------------------+----------------------------------------------------
Changes (by tick):
* status: new => accepted
--
Ticket URL: <https://docs.openmoko.org/trac/ticket/2052#comment:1>
docs.openmoko.org <http://docs.openmoko.org/trac/>
openmoko trac
--- End Message ---
--- Begin Message ---
#1957: Installer is complaining about libopk, if there is no internet
--------------------------+-------------------------------------------------
Reporter: dolfje | Owner: tick
Type: defect | Status: closed
Priority: normal | Milestone:
Component: Installer | Version:
Severity: blocker | Resolution: fixed
Keywords: | Blockedby:
Reproducible: | Blocking:
--------------------------+-------------------------------------------------
Changes (by tick):
* status: in_testing => closed
* resolution: => fixed
--
Ticket URL: <https://docs.openmoko.org/trac/ticket/1957#comment:4>
docs.openmoko.org <http://docs.openmoko.org/trac/>
openmoko trac
--- End Message ---
--- Begin Message ---
#1957: Installer is complaining about libopk, if there is no internet
--------------------------+-------------------------------------------------
Reporter: dolfje | Owner: tick
Type: defect | Status: closed
Priority: normal | Milestone:
Component: Installer | Version:
Severity: blocker | Resolution: fixed
Keywords: | Blockedby:
Reproducible: | Blocking:
--------------------------+-------------------------------------------------
Comment(by tick):
close it for it had been put in_testing for a long time, and no one
complains about this.
It works for me.
--
Ticket URL: <https://docs.openmoko.org/trac/ticket/1957#comment:5>
docs.openmoko.org <http://docs.openmoko.org/trac/>
openmoko trac
--- End Message ---
--- Begin Message ---
#1024: gsm modem oscillating between registrated / not-registrated
------------------------------------+---------------------------------------
Reporter: [EMAIL PROTECTED] | Owner: sean_chiang
Type: defect | Status: assigned
Priority: high | Milestone:
Component: gsmd | Version: unspecified
Severity: blocker | Resolution:
Keywords: | Blockedby:
Reproducible: | Blocking:
------------------------------------+---------------------------------------
Comment(by mickey):
Amazing find, mwester! What makes me really sad is that the %SLEEP is not
only not present in AT+CLAC but also hidden from the AT interpreter source
code that Openmoko got from TI.
http://git.freesmartphone.org/?p=framework.git;a=commitdiff;h=cb428650f456160992f9a0e8d57bf5d93dcdba55
is an attempt to take your findings into account. While this increases
power consumption, it will make a significant difference to all people who
want to use their Neo as a day-to-day phone. Thanks a million!
--
Ticket URL: <https://docs.openmoko.org/trac/ticket/1024#comment:45>
docs.openmoko.org <http://docs.openmoko.org/trac/>
openmoko trac
--- End Message ---
_______________________________________________
buglog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/buglog