Send commitlog mailing list submissions to
        commitlog@lists.openmoko.org

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. r4841 - developers/charlie/Wiki ([EMAIL PROTECTED])
   2. r4842 - developers/werner/wlan-trial ([EMAIL PROTECTED])
   3. r4843 - developers/werner/myroot ([EMAIL PROTECTED])
   4. Locations: Changes to 'master' ([EMAIL PROTECTED])
   5. Locations: Changes to 'master' ([EMAIL PROTECTED])
   6. Openmoko's OpenEmbedded repository. This is used to build the
      Openmoko distribution: Changes to 'org.openmoko.dev'
      ([EMAIL PROTECTED])
--- Begin Message ---
Author: charlie
Date: 2008-12-02 12:53:05 +0100 (Tue, 02 Dec 2008)
New Revision: 4841

Modified:
   developers/charlie/Wiki/ATCommands
   developers/charlie/Wiki/MC75i
   developers/charlie/Wiki/OpenEmbedded
   developers/charlie/Wiki/OpenMokoTricks
   developers/charlie/Wiki/ParoliTodo
   developers/charlie/Wiki/Qtopia
   developers/charlie/Wiki/Todo
Log:
Update personal wiki


Modified: developers/charlie/Wiki/ATCommands
===================================================================
--- developers/charlie/Wiki/ATCommands  2008-12-02 08:52:31 UTC (rev 4840)
+++ developers/charlie/Wiki/ATCommands  2008-12-02 11:53:05 UTC (rev 4841)
@@ -62,3 +62,12 @@
 - AT+CMT       : Incoming SMS
 - AT+CMTI      : incoming stored SMS
 
+* SMS:
+- AT+CMGF=1    : use text mode
+- AT+CMGF=0    : use PDU mode
+- AT+CMGS="0939662463"\rhello\x1a      : send sms hello (need to be in text 
mode)
+
+
+* GPRS:
+
+- AT^SISX      : Send a ping packet

Modified: developers/charlie/Wiki/MC75i
===================================================================
--- developers/charlie/Wiki/MC75i       2008-12-02 08:52:31 UTC (rev 4840)
+++ developers/charlie/Wiki/MC75i       2008-12-02 11:53:05 UTC (rev 4841)
@@ -43,3 +43,12 @@
 AT^SSTK, AT^SSTR, AT^SSUH, AT^STBD, AT^STCD, AT^SXSM, AT_AND_F_DUMMY,
 AT_AND_F_DUMMY, AT_AND_F_DUMMY, AT_CGATT_DUMMY, ATI, ATZ
 
+
+
+* Trying with framework
+
+First I tried to use the "singleline" modem, had to solve a bug in the
+framework that prevented to make calls.
+
+Then I can set the serial line in 'singleline/modem.py', and that's
+it, we can use the framework with mc75i 

Modified: developers/charlie/Wiki/OpenEmbedded
===================================================================
--- developers/charlie/Wiki/OpenEmbedded        2008-12-02 08:52:31 UTC (rev 
4840)
+++ developers/charlie/Wiki/OpenEmbedded        2008-12-02 11:53:05 UTC (rev 
4841)
@@ -16,7 +16,10 @@
 - packages/linux/linux-openmoko-devel_git.bb
     contains the rules to build the kernel
 
+- conf/distro/include/moko-autorev.inc and 
conf/distro/include/sane-srcrevs.inc :
+    contains the version for packages
 
+
 To recreate the Package file :
  bitbake package-index
 

Modified: developers/charlie/Wiki/OpenMokoTricks
===================================================================
--- developers/charlie/Wiki/OpenMokoTricks      2008-12-02 08:52:31 UTC (rev 
4840)
+++ developers/charlie/Wiki/OpenMokoTricks      2008-12-02 11:53:05 UTC (rev 
4841)
@@ -18,3 +18,50 @@
   echo 0 > 
/sys/devices/platform/s3c2440-i2c/i2c-adapter/i2c-0/0-0073/backlight/pcf50633-bl/bl_power
   echoing 63 for brightness and
   DISPLAY=:0 xset s reset 
+
+
+** Config ssh :
+
+in .ssh/config :
+
+Host neo
+HostName 192.168.0.202
+User root
+
+
+/etc/network/interfaces
+
+auto lo
+iface lo inet loopback
+
+allow-hotplug usb0
+iface usb0 inet static
+        address 192.168.0.200
+        netmask 255.255.255.0
+        network 192.168.0.0
+        up iptables -A POSTROUTING -t nat -j MASQUERADE -s 192.168.0.0/24 &
+        up echo 1 > /proc/sys/net/ipv4/ip_forward &
+        up iptables -P FORWARD ACCEPT &
+        down iptables -D POSTROUTING -t nat -j MASQUERADE -s 192.168.0.0/24 &
+
+
+/etc/udev/rules.d/85-ifupdown.rules :
+
+# This file causes network devices to be brought up or down as a result
+# of hardware being added or removed, including that which isn't ordinarily
+# removable.
+# See udev(7) for syntax.
+
+SUBSYSTEM=="net", DRIVERS=="?*", GOTO="net_start"
+GOTO="net_end"
+
+LABEL="net_start"
+
+# Bring devices up and down only if they're marked auto.
+# Use start-stop-daemon so we don't wait on dhcp
+ACTION=="add",          RUN+="/sbin/start-stop-daemon --start --background 
--pidfile /var/run/network/bogus --startas /sbin/ifup -- --force --allow auto 
$env{INTERFACE}"
+ACTION=="remove",       RUN+="/sbin/start-stop-daemon --start --background 
--pidfile /var/run/network/bogus --startas /sbin/ifdown -- --force --allow auto 
$env{INTERFACE}"
+ACTION=="add",          RUN+="/sbin/start-stop-daemon --start --background 
--pidfile /var/run/network/bogus --startas /sbin/ifup -- --force --allow 
hotplug $env{INTERFACE}"
+ACTION=="remove",       RUN+="/sbin/start-stop-daemon --start --background 
--pidfile /var/run/network/bogus --startas /sbin/ifdown -- --force --allow 
hotplug $env{INTERFACE}"
+
+LABEL="net_end"

Modified: developers/charlie/Wiki/ParoliTodo
===================================================================
--- developers/charlie/Wiki/ParoliTodo  2008-12-02 08:52:31 UTC (rev 4840)
+++ developers/charlie/Wiki/ParoliTodo  2008-12-02 11:53:05 UTC (rev 4841)
@@ -15,8 +15,8 @@
 
 * Illume intergration  
   - Finish DBus launcher
-  - Tichy pluging that show notifications in illume bar
-     That mean we need to see how to communicate with illume
+  - Tichy pluging that shows notifications in illume bar
+     That means we need to see how to communicate with illume
 
 o [Mirko] Paroli integration
   - Finish Evas backend
@@ -29,9 +29,6 @@
   - View message in order by time
   - Add : Export/Import all messages
  
-* SMS
-  - See a dialog when sending SMS
-
 * Keyboard Input
   - See how good the X keyboards integrate.
     Already tried with illume keyboard and SDL backend
@@ -58,6 +55,8 @@
 
 * Image Viewer app
 
+* Home app
+
 * Player app
   - See how to use gstreamer into evas
   - Add pause

Modified: developers/charlie/Wiki/Qtopia
===================================================================
--- developers/charlie/Wiki/Qtopia      2008-12-02 08:52:31 UTC (rev 4840)
+++ developers/charlie/Wiki/Qtopia      2008-12-02 11:53:05 UTC (rev 4841)
@@ -14,6 +14,8 @@
 - start illume in Xephyr
   ./x-ui.sh
 
+- export QTOPIA_PHONE_DEVICE=sim:localhost
+
 - start simulator: 
   ./bin/phonesim -p 12345 ../qtopia/src/tools/phonesim/troll.xml
 

Modified: developers/charlie/Wiki/Todo
===================================================================
--- developers/charlie/Wiki/Todo        2008-12-02 08:52:31 UTC (rev 4840)
+++ developers/charlie/Wiki/Todo        2008-12-02 11:53:05 UTC (rev 4841)
@@ -1,14 +1,16 @@
 Charly's TODO
 
-* Solve bugs #1610 and name size (put a warning)
+* Solve bugs #1610
 * See how to run sdl on framebuffer (there is a tslib problem)
 
-* See how we can use SCIM on the phone !
+* See how we can use chewing on the phone !
 
 == GSM Testing ==
+* Send email to Frank Günther ([EMAIL PROTECTED]) ask him for :
+    - GSM MUX sniffer software
+    - MUX drivers for windows ? (have a look at the project at berlios OS 
first)
 * Add SIM contact tests
    Nee to try this : 'AT+CPBS="SM";+CPBR=?', cause it raises an error sometime 
!
-* Add SMS Tests
 * Modify kernel driver to have a do_reset method in gsm_pm ?
 * See ticket #1857, try to reproduce the problem
    sent message to trac, waiting for more info
@@ -18,10 +20,10 @@
 == Tichy ==
 * Try paroli, make patches so that it works on the desktop if needed
 * Fix XWindow key problem
-* See how good tichy is as a window manager...
+* Fix windows problem with dbus launcher
+* Xwindow.start_app : quit app when we close the window
 * Create gui_edje (with default edje files for every widget)
 * New .bb file using git
-* Fix WaitDBus call timeout problem in tichy
 
 == Other ==
 * BY PLANE TICKETS FOR XMASS !!!




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2008-12-03 02:20:12 +0100 (Wed, 03 Dec 2008)
New Revision: 4842

Modified:
   developers/werner/wlan-trial/Makefile
   developers/werner/wlan-trial/wlan-trial.init
   developers/werner/wlan-trial/wlan-trial.myroot
Log:
- wlan-trial.myroot: added bind-utils and nano
- wlan-trial.myroot, wlan-trial.init, Makefile: provide detailed kernel version
  information, including git and quilt status



Modified: developers/werner/wlan-trial/Makefile
===================================================================
--- developers/werner/wlan-trial/Makefile       2008-12-02 11:53:05 UTC (rev 
4841)
+++ developers/werner/wlan-trial/Makefile       2008-12-03 01:20:12 UTC (rev 
4842)
@@ -1,7 +1,7 @@
 # This is where my kernel lives. Edit or use
 # make KERNEL=/your/kernel/uImage sd
 
-VERSION=11-28
+VERSION=12-02
 ID=wlan-trial-$(VERSION)
 
 KERNEL=/home/moko/git/ktrack/arch/arm/boot/uImage
@@ -18,8 +18,11 @@
        @echo "make what ?" 1>&2
        @exit 1
 
-rootfs:        rootfs
-       VERSION=$(VERSION) ../myroot/myroot wlan-trial.myroot
+rootfs:
+       { k=$(KERNEL); while [ ! -d $$k/.git ]; do \
+         [ -z "$$k" -o "$$k" = / ] && exit 1; \
+         k=`echo "$$k" | sed 's|/[^/]*$$||'`; done; } && \
+         VERSION=$(VERSION) KERNEL_DIR=$$k ../myroot/myroot wlan-trial.myroot
 
 jffs2:
        ../myroot/mkjffs2

Modified: developers/werner/wlan-trial/wlan-trial.init
===================================================================
--- developers/werner/wlan-trial/wlan-trial.init        2008-12-02 11:53:05 UTC 
(rev 4841)
+++ developers/werner/wlan-trial/wlan-trial.init        2008-12-03 01:20:12 UTC 
(rev 4842)
@@ -39,11 +39,12 @@
 
 cat <<EOF >/etc/motd
 *
-*  WLAN Trial System, version `cat /VERSION`
+*  WLAN Trial System, version `sed '1p;d' /VERSION`
 *
-* (kernel `uname -rv`)
-*
+*  Kernel `uname -rv`,
 EOF
+sed '1d;s/^/*  /' /VERSION >>/etc/motd
+echo '*' >>/etc/motd
 
 # shell
 PS1='con:\w\$ '

Modified: developers/werner/wlan-trial/wlan-trial.myroot
===================================================================
--- developers/werner/wlan-trial/wlan-trial.myroot      2008-12-02 11:53:05 UTC 
(rev 4841)
+++ developers/werner/wlan-trial/wlan-trial.myroot      2008-12-03 01:20:12 UTC 
(rev 4842)
@@ -26,10 +26,11 @@
 
 pkg grep bash debianutils
 pkg mtd-utils sysfsutils apm
-pkg openssh ntpdate netkit-telnet
+pkg openssh ntpdate netkit-telnet bind-utils
 pkg dhcp-client wireless-tools wpa-supplicant
 pkg portmap ppp rsync
 pkg file
+pkg nano
 pkg opkg gzip
 
 
@@ -81,6 +82,8 @@
 
 cp $my/wlan-trial/wlan-trial.init sbin/init
 echo $VERSION >VERSION
+GIT_DIR=$KERNEL_DIR/.git git show | sed 1q >>VERSION
+sed 's/^/+ /' $KERNEL_DIR/.pc/applied-patches >>VERSION
 
 
 # ----- set up sshd -----------------------------------------------------------




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2008-12-03 02:21:12 +0100 (Wed, 03 Dec 2008)
New Revision: 4843

Modified:
   developers/werner/myroot/werner.myroot
Log:
A fairy has put bind-utils in the feed ;-)



Modified: developers/werner/myroot/werner.myroot
===================================================================
--- developers/werner/myroot/werner.myroot      2008-12-03 01:20:12 UTC (rev 
4842)
+++ developers/werner/myroot/werner.myroot      2008-12-03 01:21:12 UTC (rev 
4843)
@@ -27,7 +27,7 @@
 
 pkg grep bash debianutils
 pkg mtd-utils sysfsutils apm
-pkg openssh ntpdate netkit-telnet
+pkg openssh ntpdate netkit-telnet bind-utils
 pkg dhcp-client wireless-tools wpa-supplicant
 pkg portmap ppp rsync
 pkg alsa-state alsa-utils-alsamixer alsa-utils-alsactl alsa-utils-aplay




--- End Message ---
--- Begin Message ---
 src/widgets/e_nav_list.c |   23 +++++++++++++++++++++--
 1 files changed, 21 insertions(+), 2 deletions(-)

New commits:
commit 492f9c5d3aa5ee350d6c2178f31e6bcd164aafb9
Author: Jeremy Chang <[EMAIL PROTECTED]>
Date:   Wed Dec 3 16:24:55 2008 +0800

    Enable magic fake row for tag list.

commit 3d8f39d0d2e84456521d870185f7a051ce069b31
Author: Jeremy Chang <[EMAIL PROTECTED]>
Date:   Wed Dec 3 16:05:58 2008 +0800

    For tag list, stay the same state for the swallow part (no extra offset at 
bottom).

commit be0eb56b4557749ab2a9d5d62cb58b0528c918fe
Author: Jeremy Chang <[EMAIL PROTECTED]>
Date:   Wed Dec 3 16:05:16 2008 +0800

    Set scroll view extra margin for tag list.




--- End Message ---
--- Begin Message ---
 src/widgets/e_nav_list.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

New commits:
commit 942e88a1b689ffe3f11a2d982cce389cc965b2ec
Author: Jeremy Chang <[EMAIL PROTECTED]>
Date:   Wed Dec 3 17:03:36 2008 +0800

    Change the magic number MAGIC_OF_FAKE_ROW to 5.  this's Dirty!




--- End Message ---
--- Begin Message ---
 conf/distro/include/sane-srcrevs.inc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a66e8fffe92647da8bf86de7f9779f8ccc7ad1cd
Author: Jeremy Chang <[EMAIL PROTECTED]>
Date:   Wed Dec 3 17:39:47 2008 +0800

    sane-srcrevs.inc: update qtopia-phone-x11 to the latest version.

commit 63d6f988508cf7c4fa3dc0fe23a1bb57faab0073
Author: Jeremy Chang <[EMAIL PROTECTED]>
Date:   Wed Dec 3 17:35:52 2008 +0800

    om-locations: Bump up om-locations to latest version.




--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to