/packages/python/python-openmoko/

30e5ac8f166895de579ccb40c67 which were removed previously.
which were removed previously.
import clean BK tree at cset 1.3670 2005-06-30T08:19:37+00:00 Koen Kooi koen@openembedded.org 2005-06-30T08:19:37+00:00 c8e5702127e507e82e6f68a4b8c546803accea9d

Merge bk://oe-devel.bkbits.net/openembedded 2005-05-10T17:39:59+00:00 nslu2-linux.adm@bkbits.net nslu2-linux.adm@bkbits.net 2005-05-10T17:39:59+00:00 26b5131bd0c99affcaf43426202c4f88f977bfe8 into bkbits.net:/repos/n/nslu2-linux/openembedded 2005/05/10 19:25:41+02:00 utwente.nl!koen Merge bk://oe-devel@oe-devel.bkbits.net/openembedded into bitbake.utwente.nl:/home/koen/OE/openembedded 2005/05/10 19:25:21+02:00 utwente.nl!koen defconfig-h3900: enable sl811 in hh-pxa-hh39 2005/05/10 19:12:23+02:00 hrw.one.pl!hrw updated swig to 1.3.24 (patch from Philip Balister) BKrev: 4280f1ef0wBXnC_ZEgilDQMrQ3Tp8w
into  bkbits.net:/repos/n/nslu2-linux/openembedded

2005/05/10 19:25:41+02:00 utwente.nl!koen
Merge bk://oe-devel@oe-devel.bkbits.net/openembedded
into bitbake.utwente.nl:/home/koen/OE/openembedded

2005/05/10 19:25:21+02:00 utwente.nl!koen
defconfig-h3900:  enable sl811 in hh-pxa-hh39

2005/05/10 19:12:23+02:00 hrw.one.pl!hrw
updated swig to 1.3.24 (patch from Philip Balister)

BKrev: 4280f1ef0wBXnC_ZEgilDQMrQ3Tp8w
Merge 2005-04-28T20:00:20+00:00 Koen Kooi koen@openembedded.org 2005-04-28T20:00:20+00:00 df3493d551b643cb6f68e7ef228d43eb01bd5cdf 2005/04/28 19:06:13+02:00 (none)!patrick various local fixes 2005/04/24 19:32:00+02:00 (none)!patrick Merge bk://openembedded.bkbits.net/openembedded into gollum.(none):/scratch/oe/openembedded_official 2005/04/24 16:42:09+02:00 (none)!patrick enabled build of USB gadget modules 2005/04/24 13:28:27+02:00 (none)!patrick Merge bk://openembedded.bkbits.net/openembedded into gollum.(none):/scratch/oe/openembedded_official 2005/04/24 12:59:25+02:00 (none)!patrick added module parameter "compat_mode" which disables RNDIS and thus makes g_ether compatible with usbnet from older Linux kernels 2005/04/22 19:15:51+02:00 (none)!patrick build g_ether with RNDIS support 2005/04/17 19:15:55+02:00 (none)!patrick Merge bk://openembedded.bkbits.net/openembedded into gollum.(none):/scratch/oe/openembedded_official 2005/04/17 19:06:36+02:00 (none)!patrick This ChangeSet ensures that the USB gadget code is compiled as modules in addition to the normal USB modules, without replacing those. The intention is that people who have trouble with the default modules (like myself with an IPAQ 3970 and an IBM ThinkPad 42 and several other users) can easily switch to the alternative USB networking code without having to recompile and reinstall the kernel. Modifications necessary to actually switch to the new modules are done automatically by the following script, which can be run as part of the OE build process by adding ROOTFS_POSTPROCESS_COMMAND += "<path to script>; " to the local.conf. If ed is installed on the IPAQ, then it can also be run there, otherwise the config file changes have to be done manually. --------------------------------------------------------- #!/bin/sh cd ${D:-/} # autoload g_ether instead of usb-eth rm -f etc/modutils/usb-eth echo 'g_ether' >etc/modutils/g_ether # use same configuration for usb0 (provided by g_ether) as # for usbf (provided by usb-eth) - cannot have both at the same time ed etc/network/interfaces <<EOF /usb0 s/dhcp/static a address 192.168.0.202 netmask 255.255.255.0 network 192.168.0.0 gateway 192.168.0.200
2005/04/28 19:06:13+02:00 (none)!patrick
various local fixes

2005/04/24 19:32:00+02:00 (none)!patrick
Merge bk://openembedded.bkbits.net/openembedded
into gollum.(none):/scratch/oe/openembedded_official

2005/04/24 16:42:09+02:00 (none)!patrick
enabled build of USB gadget modules

2005/04/24 13:28:27+02:00 (none)!patrick
Merge bk://openembedded.bkbits.net/openembedded
into gollum.(none):/scratch/oe/openembedded_official

2005/04/24 12:59:25+02:00 (none)!patrick
added module parameter "compat_mode" which disables RNDIS
and thus makes g_ether compatible with usbnet from older
Linux kernels

2005/04/22 19:15:51+02:00 (none)!patrick
build g_ether with RNDIS support

2005/04/17 19:15:55+02:00 (none)!patrick
Merge bk://openembedded.bkbits.net/openembedded
into gollum.(none):/scratch/oe/openembedded_official

2005/04/17 19:06:36+02:00 (none)!patrick
This ChangeSet ensures that the USB gadget code is compiled as
modules in addition to the normal USB modules, without replacing
those.

The intention is that people who have trouble with the default
modules (like myself with an IPAQ 3970 and an IBM ThinkPad 42
and several other users) can easily switch to the alternative USB
networking code without having to recompile and reinstall the kernel.

Modifications necessary to actually switch to the new modules are
done automatically by the following script, which can be run
as part of the OE build process by adding
  ROOTFS_POSTPROCESS_COMMAND += "<path to script>; "
to the local.conf.

If ed is installed on the IPAQ, then it can also be run there,
otherwise the config file changes have to be done manually.

---------------------------------------------------------
#!/bin/sh

cd ${D:-/}

# autoload g_ether instead of usb-eth
rm -f etc/modutils/usb-eth
echo 'g_ether' >etc/modutils/g_ether

# use same configuration for usb0 (provided by g_ether) as
# for usbf (provided by usb-eth) - cannot have both at the same time
ed etc/network/interfaces <<EOF
/usb0
s/dhcp/static
a
        address 192.168.0.202
        netmask 255.255.255.0
        network 192.168.0.0
        gateway 192.168.0.200
update defconfig-h3900 2005-04-16T08:10:58+00:00 Koen Kooi koen@openembedded.org 2005-04-16T08:10:58+00:00 cac9a4713285c145c4b95d8f0e89ec1edf2d6823 BKrev: 4260c892UGo11-yOREF4qhwhJsYqtw
BKrev: 4260c892UGo11-yOREF4qhwhJsYqtw
finally commit -hh39 conf files. bk sfiles is my friend 2005-04-15T20:42:03+00:00 Koen Kooi koen@openembedded.org 2005-04-15T20:42:03+00:00 651ebc8b76af840b8cc28bdef3873ebb17e2c452 BKrev: 4260271bREuNjPV0P2QqkIyJwnzGwQ
BKrev: 4260271bREuNjPV0P2QqkIyJwnzGwQ