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. r2936 -
trunk/src/target/OM-2007.2/panel-plugins/openmoko-panel-gsm/src
([EMAIL PROTECTED])
2. r2937 - trunk/src/target/kernel/patches
([EMAIL PROTECTED])
3. r2938 - trunk/src/target/u-boot/patches
([EMAIL PROTECTED])
--- Begin Message ---
Author: mickey
Date: 2007-09-06 22:21:49 +0200 (Thu, 06 Sep 2007)
New Revision: 2936
Modified:
trunk/src/target/OM-2007.2/panel-plugins/openmoko-panel-gsm/src/openmoko-panel-gsm.c
Log:
openmoko-panel-gsm: catch up with API breakage in libmokogsmd
Modified:
trunk/src/target/OM-2007.2/panel-plugins/openmoko-panel-gsm/src/openmoko-panel-gsm.c
===================================================================
---
trunk/src/target/OM-2007.2/panel-plugins/openmoko-panel-gsm/src/openmoko-panel-gsm.c
2007-09-06 16:14:28 UTC (rev 2935)
+++
trunk/src/target/OM-2007.2/panel-plugins/openmoko-panel-gsm/src/openmoko-panel-gsm.c
2007-09-06 20:21:49 UTC (rev 2936)
@@ -77,7 +77,7 @@
gsm_applet_power_up_antenna(GtkWidget* menu, GsmApplet* applet)
{
//TODO notify user
- moko_gsmd_connection_set_antenna_power( applet->gsm, TRUE );
+ moko_gsmd_connection_set_antenna_power( applet->gsm, TRUE, NULL );
}
static void
@@ -90,7 +90,7 @@
gsm_applet_power_down_antenna(GtkWidget* menu, GsmApplet* applet)
{
//TODO notify user
- moko_gsmd_connection_set_antenna_power( applet->gsm, FALSE );
+ moko_gsmd_connection_set_antenna_power( applet->gsm, FALSE, NULL );
}
G_MODULE_EXPORT GtkWidget*
--- End Message ---
--- Begin Message ---
Author: laforge
Date: 2007-09-07 06:13:50 +0200 (Fri, 07 Sep 2007)
New Revision: 2937
Modified:
trunk/src/target/kernel/patches/pcf50633.patch
Log:
increase default LCM backlight brightness at boot to max brightness
Modified: trunk/src/target/kernel/patches/pcf50633.patch
===================================================================
--- trunk/src/target/kernel/patches/pcf50633.patch 2007-09-06 20:21:49 UTC
(rev 2936)
+++ trunk/src/target/kernel/patches/pcf50633.patch 2007-09-07 04:13:50 UTC
(rev 2937)
@@ -34,7 +34,7 @@
===================================================================
--- /dev/null
+++ linux-2.6.22.5-moko/drivers/i2c/chips/pcf50633.c
-@@ -0,0 +1,1715 @@
+@@ -0,0 +1,1716 @@
+/* Philips PCF50633 Power Management Unit (PMU) driver
+ *
+ * (C) 2006-2007 by OpenMoko, Inc.
@@ -1489,7 +1489,8 @@
+ data->backlight->props.max_brightness = 0x3f;
+ data->backlight->props.power = FB_BLANK_UNBLANK;
+ data->backlight->props.fb_blank = FB_BLANK_UNBLANK;
-+ data->backlight->props.brightness = 0x20;
++ data->backlight->props.brightness =
++ data->backlight->props.max_brightness;
+ backlight_update_status(data->backlight);
+ }
+
--- End Message ---
--- Begin Message ---
Author: laforge
Date: 2007-09-07 06:26:34 +0200 (Fri, 07 Sep 2007)
New Revision: 2938
Modified:
trunk/src/target/u-boot/patches/uboot-s3c2440.patch
trunk/src/target/u-boot/patches/uboot-s3c2442.patch
trunk/src/target/u-boot/patches/uboot-s3c24xx_multi_serial.patch
Log:
re-sync with u-boot mainline
Modified: trunk/src/target/u-boot/patches/uboot-s3c2440.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-s3c2440.patch 2007-09-07 04:13:50 UTC
(rev 2937)
+++ trunk/src/target/u-boot/patches/uboot-s3c2440.patch 2007-09-07 04:26:34 UTC
(rev 2938)
@@ -1466,10 +1466,10 @@
#if defined(CONFIG_SERIAL1)
return &s3c24xx_serial0_device;
#elif defined(CONFIG_SERIAL2)
-@@ -121,7 +121,7 @@
+@@ -129,7 +129,7 @@
+ #if defined (CONFIG_STUART)
+ serial_register(&serial_stuart_device);
#endif
- #endif /* CFG_NS16550_SERIAL */
-
-#if defined(CONFIG_S3C2410)
+#if defined(CONFIG_S3C2410) || defined(CONFIG_S3C2440)
serial_register(&s3c24xx_serial0_device);
Modified: trunk/src/target/u-boot/patches/uboot-s3c2442.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-s3c2442.patch 2007-09-07 04:13:50 UTC
(rev 2937)
+++ trunk/src/target/u-boot/patches/uboot-s3c2442.patch 2007-09-07 04:26:34 UTC
(rev 2938)
@@ -642,10 +642,10 @@
#if defined(CONFIG_SERIAL1)
return &s3c24xx_serial0_device;
#elif defined(CONFIG_SERIAL2)
-@@ -121,7 +122,8 @@
+@@ -129,7 +130,8 @@
+ #if defined (CONFIG_STUART)
+ serial_register(&serial_stuart_device);
#endif
- #endif /* CFG_NS16550_SERIAL */
-
-#if defined(CONFIG_S3C2410) || defined(CONFIG_S3C2440)
+#if defined(CONFIG_S3C2410) || defined(CONFIG_S3C2440) || \
+ defined(CONFIG_S3C2442)
Modified: trunk/src/target/u-boot/patches/uboot-s3c24xx_multi_serial.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-s3c24xx_multi_serial.patch
2007-09-07 04:13:50 UTC (rev 2937)
+++ trunk/src/target/u-boot/patches/uboot-s3c24xx_multi_serial.patch
2007-09-07 04:26:34 UTC (rev 2938)
@@ -19,17 +19,15 @@
#else
#error No default console
#endif
-@@ -110,6 +120,13 @@
- serial_register(&eserial4_device);
+@@ -119,6 +129,11 @@
+ #if defined (CONFIG_STUART)
+ serial_register(&serial_stuart_device);
#endif
- #endif /* CFG_NS16550_SERIAL */
-+
+#if defined(CONFIG_S3C2410)
+ serial_register(&s3c24xx_serial0_device);
+ serial_register(&s3c24xx_serial1_device);
+ serial_register(&s3c24xx_serial2_device);
+#endif
-+
serial_assign (default_serial_console ()->name);
}
@@ -288,13 +286,13 @@
+extern struct serial_device s3c24xx_serial2_device;
+#endif
- extern void serial_initialize(void);
- extern void serial_devices_init(void);
+ extern struct serial_device serial_ffuart_device;
+ extern struct serial_device serial_btuart_device;
Index: u-boot/lib_arm/board.c
===================================================================
--- u-boot.orig/lib_arm/board.c
+++ u-boot/lib_arm/board.c
-@@ -345,6 +345,10 @@
+@@ -349,6 +349,10 @@
#endif
}
--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog