Send commitlog mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.openmoko.org/mailman/listinfo/commitlog
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 commitlog digest..."
Today's Topics:

   1. r2376 - trunk/oe/packages/gpsd ([EMAIL PROTECTED])
   2. r2377 - in trunk/oe/packages/linux: . linux-gta01
      ([EMAIL PROTECTED])
   3. r2378 - trunk/oe/conf ([EMAIL PROTECTED])
   4. r2379 - in trunk/src/host/qemu-neo1973: gnokiigsm hw
      ([EMAIL PROTECTED])
--- Begin Message ---
Author: shoragan
Date: 2007-07-11 14:57:40 +0200 (Wed, 11 Jul 2007)
New Revision: 2376

Modified:
   trunk/oe/packages/gpsd/gpsd.inc
   trunk/oe/packages/gpsd/gpsd_2.34.bb
Log:
Solve gpsd build error by backporting fix from OE
(http://bugs.openembedded.org/show_bug.cgi?id=2531).
Keep oe-sync because this fix is already in OE.

Modified: trunk/oe/packages/gpsd/gpsd.inc
===================================================================
--- trunk/oe/packages/gpsd/gpsd.inc     2007-07-10 16:14:45 UTC (rev 2375)
+++ trunk/oe/packages/gpsd/gpsd.inc     2007-07-11 12:57:40 UTC (rev 2376)
@@ -5,8 +5,9 @@
 DEPENDS = "dbus-glib ncurses"
 
 EXTRA_OECONF = "--x-includes=${STAGING_INCDIR}/X11  \
-               --x-libraries=${STAGING_LIBDIR} \
-                --enable-dbus"
+                --x-libraries=${STAGING_LIBDIR} \
+                --enable-dbus \
+                --disable-python"
 
 SRC_URI = "http://download.berlios.de/gpsd/gpsd-${PV}.tar.gz \
            file://gpsd"
@@ -18,6 +19,16 @@
 
 export LDFLAGS = "-L${STAGING_LIBDIR} -lm"
 
+do_compile_prepend() {
+    export BUILD_SYS="${BUILD_SYS}"
+    export HOST_SYS="${HOST_SYS}"
+}
+
+do_install_prepend() {
+    export BUILD_SYS="${BUILD_SYS}"
+    export HOST_SYS="${HOST_SYS}"
+}
+
 do_stage() {
         oe_libinstall -so -C ${S}/.libs libgps ${STAGING_LIBDIR}
         install -m 0655 ${S}/libgps.la ${STAGING_LIBDIR}

Modified: trunk/oe/packages/gpsd/gpsd_2.34.bb
===================================================================
--- trunk/oe/packages/gpsd/gpsd_2.34.bb 2007-07-10 16:14:45 UTC (rev 2375)
+++ trunk/oe/packages/gpsd/gpsd_2.34.bb 2007-07-11 12:57:40 UTC (rev 2376)
@@ -1,3 +1,3 @@
 require gpsd.inc
 
-PR = "r0"
+PR = "r1"




--- End Message ---
--- Begin Message ---
Author: alphaone
Date: 2007-07-11 19:24:35 +0200 (Wed, 11 Jul 2007)
New Revision: 2377

Modified:
   trunk/oe/packages/linux/linux-gta01/defconfig-2.6.21.5-fic-gta01
   trunk/oe/packages/linux/linux-gta01_2.6.21.5.bb
Log:
* Enable CONFIG_RTC_HCTOSYS option to retrieve time from the RTC on boot


Modified: trunk/oe/packages/linux/linux-gta01/defconfig-2.6.21.5-fic-gta01
===================================================================
--- trunk/oe/packages/linux/linux-gta01/defconfig-2.6.21.5-fic-gta01    
2007-07-11 12:57:40 UTC (rev 2376)
+++ trunk/oe/packages/linux/linux-gta01/defconfig-2.6.21.5-fic-gta01    
2007-07-11 17:24:35 UTC (rev 2377)
@@ -1531,7 +1531,8 @@
 #
 CONFIG_RTC_LIB=y
 CONFIG_RTC_CLASS=y
-# CONFIG_RTC_HCTOSYS is not set
+CONFIG_RTC_HCTOSYS=y
+CONFIG_RTC_HCTOSYS_DEVICE=rtc0
 CONFIG_RTC_DEBUG=y
 
 #

Modified: trunk/oe/packages/linux/linux-gta01_2.6.21.5.bb
===================================================================
--- trunk/oe/packages/linux/linux-gta01_2.6.21.5.bb     2007-07-11 12:57:40 UTC 
(rev 2376)
+++ trunk/oe/packages/linux/linux-gta01_2.6.21.5.bb     2007-07-11 17:24:35 UTC 
(rev 2377)
@@ -4,7 +4,7 @@
 SRC_URI += "file://fix-EVIOCGRAB-semantics.patch;patch=1"
 
 MOKOR = "moko10"
-PR = "${MOKOR}-r1"
+PR = "${MOKOR}-r2"
 
 VANILLA_VERSION = "2.6.21.5"
 




--- End Message ---
--- Begin Message ---
Author: shoragan
Date: 2007-07-11 22:26:48 +0200 (Wed, 11 Jul 2007)
New Revision: 2378

Modified:
   trunk/oe/conf/site.conf
Log:
apr-1.2.7 is no longer available on http://www.apache.org/dist/apr/

Modified: trunk/oe/conf/site.conf
===================================================================
--- trunk/oe/conf/site.conf     2007-07-11 17:24:35 UTC (rev 2377)
+++ trunk/oe/conf/site.conf     2007-07-11 20:26:48 UTC (rev 2378)
@@ -14,3 +14,4 @@
 #INHIBIT_PACKAGE_STRIP = "1"
 SOURCEFORGE_MIRROR = "http://belnet.dl.sf.net";
 #PARALLEL_MAKE = ""
+APACHE_MIRROR = "http://archive.apache.org/dist";




--- End Message ---
--- Begin Message ---
Author: andrew
Date: 2007-07-12 10:00:49 +0200 (Thu, 12 Jul 2007)
New Revision: 2379

Modified:
   trunk/src/host/qemu-neo1973/gnokiigsm/at-emulator.h
   trunk/src/host/qemu-neo1973/gnokiigsm/statemachine.h
   trunk/src/host/qemu-neo1973/hw/neo1973.c
Log:
Only power the modem up/down if it's there.


Modified: trunk/src/host/qemu-neo1973/gnokiigsm/at-emulator.h
===================================================================
--- trunk/src/host/qemu-neo1973/gnokiigsm/at-emulator.h 2007-07-11 20:26:48 UTC 
(rev 2378)
+++ trunk/src/host/qemu-neo1973/gnokiigsm/at-emulator.h 2007-07-12 08:00:49 UTC 
(rev 2379)
@@ -88,10 +88,11 @@
           are guesses as I've not got an AT reference handy.   HAB */
 
 #define        MR_OK                   (0)
+#define         MR_RING                 (2)
+#define                MR_NOCARRIER            (3)
 #define                MR_ERROR                (4)
-#define                MR_NOCARRIER    (5)
-#define                MR_CARRIER              (2)
-#define                MR_CONNECT              (3)
-#define         MR_RING                 (6)
+#define                MR_CARRIER              (5)     /* guess */
+#define                MR_CONNECT              (6)     /* guess */
+#define                MR_BUSY                 (7)
 
 #endif /* _gnokii_data_at_emulator_h */

Modified: trunk/src/host/qemu-neo1973/gnokiigsm/statemachine.h
===================================================================
--- trunk/src/host/qemu-neo1973/gnokiigsm/statemachine.h        2007-07-11 
20:26:48 UTC (rev 2378)
+++ trunk/src/host/qemu-neo1973/gnokiigsm/statemachine.h        2007-07-12 
08:00:49 UTC (rev 2379)
@@ -74,7 +74,7 @@
        gn_link link;
        gn_driver driver;
        char *lockfile;
-       
+
        /* Store last message for resend purposes */
        unsigned char last_msg_type;
        unsigned int last_msg_size;

Modified: trunk/src/host/qemu-neo1973/hw/neo1973.c
===================================================================
--- trunk/src/host/qemu-neo1973/hw/neo1973.c    2007-07-11 20:26:48 UTC (rev 
2378)
+++ trunk/src/host/qemu-neo1973/hw/neo1973.c    2007-07-12 08:00:49 UTC (rev 
2379)
@@ -113,17 +113,19 @@
 {
     struct neo_board_s *s = (struct neo_board_s *) opaque;
 
-    /* The GSM modem seems to take a little while to power up and
-     * start talking to the serial.  This turns out to be critical because
-     * before gsmd runs and disables Local Echo for the UART, everything
-     * that the modem outputs is looped back and confuses the parser.
-     */
-    if (level)
-        qemu_mod_timer(s->modem_timer, qemu_get_clock(vm_clock) +
-                        (ticks_per_sec >> 4));
-    else {
-        qemu_del_timer(s->modem_timer);
-        modem_enable(s->modem, 0);
+    if (s->modem) {
+        /* The GSM modem seems to take a little while to power up and
+         * start talking to the serial.  This turns out to be critical because
+         * before gsmd runs and disables Local Echo for the UART, everything
+         * that the modem outputs is looped back and confuses the parser.
+         */
+        if (level)
+            qemu_mod_timer(s->modem_timer, qemu_get_clock(vm_clock) +
+                            (ticks_per_sec >> 4));
+        else {
+            qemu_del_timer(s->modem_timer);
+            modem_enable(s->modem, 0);
+        }
     }
 
     neo_printf("Modem powered %s.\n", level ? "up" : "down");




--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to