Ventura Debian package? [Re: ventura upgrades]

2010-04-28 Thread Mikael Berthe
Hello,

Do you know if somebody has built a Debian package for Ventura?

It looks like ewebkit is missing as well on Debian.

Regards,
Mikael

* c_c cchan...@yahoo.com [2010-04-15 03:31 +0200]:
 
   I've updated the repository so the newer version should hit the feeds
 soon. For those not willing to wait here is an ipk 
 http://n2.nabble.com/file/n4905070/ventura_1.0-r0.4_armv4t.ipk

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Install Debian without internet access

2008-09-27 Thread Mikael Berthe
* Matthias Camenzind [EMAIL PROTECTED] [2008-09-27 07:19 +0200]:
 
 This is what i did on ubuntu:

 sudo iptables -N RH-Firewall-1-INPUT
 sudo iptables -I RH-Firewall-1-INPUT -s 192.168.0.202 -j ACCEPT

I think these two lines are useless (and the RH- prefix makes me think
it comes from a RedHat based system).

Anyway, here you're creating a chain you do not seem to use (unless
it is magically used by Ubuntu).

 sudo iptables -t nat -A POSTROUTING -j MASQUERADE -s 192.168.0.0/24

This one is necessary; you'd better specify the output interface with -o
(for example -o eth0).

 sudo iptables -t nat -A PREROUTING -p tcp -s 192.168.0.202 -d 192.168.0.200 
 --sport 0:65535 --dport 0:65535 -j DNAT --to-destination 192.168.1.1
 sudo iptables -t nat -A PREROUTING -p udp -s 192.168.0.202 -d 192.168.0.200 
 --sport 0:65535 --dport 0:65535 -j DNAT --to-destination 192.168.1.1

I wonder what it's supposed to do.

 sudo sysctl -w net.ipv4.ip_forward=1

Necessary.

 and I installed and run Firestarter (not sure if it was necessary)

Don't think so :)
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Preventing opkg upgrade from flashing the kernel partition

2008-09-03 Thread Mikael Berthe
* arne anka [EMAIL PROTECTED] [2008-09-03 10:48 +0200]:
 
  I tried to find a kernel package to check but I couldn't find one.
 
 how's that?
 if you don't find a kernel package then probably none would be installed.
 if you got an opkg based distribution installed that already had a kernel  
 upgrade via opkg, look into /usr/lib/opkg/ (i think).

Aha, you're right!  I was trying to download an opk file, didn't think
of looking the opkg directory (for some reason I was convinced that opkg
removes these scripts to gain some space).

So Qtopia's postinst script contains

(...)
if [ -f /etc/default/flashkernel ] ; then
echo Upgrading Kernel in Flash
echo DO NOT stop this process
(flashing...)
else
touch /etc/default/flashkernel
fi

(I'll check OM2008, I suppose it's the same.)

So doing
 rm /etc/default/flashkernel ; opkg upgrade
seems to do what I want.  I'll try it.

I wonder why the file is created when it doesn't exist, however.

 furthermore, opkg might have an option to not execute scripts upon  
 installation.

Maybe, but that would apply to all packages upgraded by an
opkg upgrade session.


Thanks for the hint, Arne!
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Preventing opkg upgrade from flashing the kernel partition

2008-09-02 Thread Mikael Berthe
* arne anka [EMAIL PROTECTED] [2008-09-02 10:57 +0200]:
  I do want opkg to update the kernel, but I don't want it to touch NAND,
  because my system is on the SD card.
 
 i would expect opkg to update the kernel in /boot -- if you boot from sd  
 it should be the kernel /boot on your sd, if you boot from nand it should  
 be nand.

I'm not sure the kernel package scripts have this logic.  I doubt it,
and that's why I asked ;)

I tried to find a kernel package to check but I couldn't find one.

 how did you design your system?

1 OS in flash (initial OM2007.2),
1 SD card with 4 partitions (2 of them containing a bootable system).

I'm afraid that upgrading the kernel on one of the SD card systems could
flash the NAND kernel (and then the kernel wouldn't match the OM2007.2
modules).
Of course there would be a few ways to recover from this situation, but
if I can make sure it will not happen it's all the better...
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Preventing opkg upgrade from flashing the kernel partition

2008-09-01 Thread Mikael Berthe
Hi,

I have several systems on the Freerunner and I would like to know if
there's a way to prevent opkg from flashing a new kernel to NAND.

Is there such an option?

I'm currently holding the kernel packages, but it would be better if
/boot/uImage could be upgraded normally.
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Preventing opkg upgrade from flashing the kernel partition

2008-09-01 Thread Mikael Berthe
* Marcel [EMAIL PROTECTED] [2008-09-01 22:21 +0200]:
 Am Montag 01 September 2008 22:12:03 schrieb Mikael Berthe:
 
  I have several systems on the Freerunner and I would like to know if
  there's a way to prevent opkg from flashing a new kernel to NAND.
 
  Is there such an option?
 
 You could try removing any write flags from the uImage.bin so that it gets 
 readonly.

I want to preserve the flash kernel partition, not the uImage.bin files
in the filesystems.

Maybe I can write-protect /dev/mtdblockX but I'm not sure it would work
(I don't know how the package works, cannot find a kernel package in the
current repositories) and it looks ugly...
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Preventing opkg upgrade from flashing the kernel partition

2008-09-01 Thread Mikael Berthe
* Marco Trevisan (Treviño) [EMAIL PROTECTED] [2008-09-02 06:00 +0200]:
  
  I have several systems on the Freerunner and I would like to know if
  there's a way to prevent opkg from flashing a new kernel to NAND.
  
  Is there such an option?
  
  I'm currently holding the kernel packages, but it would be better if
  /boot/uImage could be upgraded normally.
 
 Why not opkg flag hold kernel-image-2.6.24 ?

Isn't it anwsered above?
That's already what I'm doing, but that's not what I want.

I do want opkg to update the kernel, but I don't want it to touch NAND,
because my system is on the SD card.
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: 2008.8: Enlightenment crashing at bootup after upgrade

2008-08-30 Thread Mikael Berthe
* Michael Zanetti [EMAIL PROTECTED] [2008-08-30 14:06 +0200]:
 Hi all,

Hi,

 I ran into this problem now for the second time. The first time I had 
 installed 2008.8 with zeckes feed. After a some days opkg update  opkg 
 upgrade destroyed my enlightenment installation. At startup it crashes 
 (SIGSEV) leaving me with a MessageBox with options for retrying or exiting. 

I've had the same problem.  I've eventually given up and I reflashed the
FreeRunner too.

I haven't had the problem again (yet)...

 Because of this I decided to re-flash my Neo and installed 2008.8-update 
 (original feeds). The first 2 days everything was working fine. Today I 
 executed an opkg update  opkg upgrade and I'm stuck with the same problem.

Today's opkg upgrade broke all Qtopia-based apps.  Qpe keeps crashing
and I'm getting the same white message box, but asking me if I want to
restart qpe... (which doesn't work, btw)

 I have already tried to reinstall e-wm and illume via opkg -force-reinstall. 
 Didn't fix it...

Raster told me he had pushed a new version to asu.dev but I don't know
if it went to testing or not yet.
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Getting rid of echo for callers.

2008-08-29 Thread Mikael Berthe
* Mike Baroukh [EMAIL PROTECTED] [2008-08-29 09:36 +0200]:
 
 What I don't understand is why the settings have to be phone dependant.
 If I'm not wrong, this settings depends not of the phone but of the gsm 
 operator.

I don't think so, I'm getting different results when I talk with people
using the same operator...
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Questions about FR (ASU)

2008-08-28 Thread Mikael Berthe
Hi,

* [EMAIL PROTECTED] [EMAIL PROTECTED] [2008-08-26 14:28 +0200]:

 I would like to know if there is a pdf ready (in test or release) for ASU ?

There's evince in the repository (for OM2008.8).

HTH,
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Lock version of package with opkg

2008-08-19 Thread Mikael Berthe
Hi,

* [EMAIL PROTECTED] [EMAIL PROTECTED] [2008-08-19 20:21 +0200]:
 I'm using the scaredycat repo and gpsd doesn't seem to work right. Is
 there any way to lock the old version so I can do an 'opkg upgrade'
 without upgrading gpsd?

opkg flag hold gpsd should do it.

HTH,
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: It is possible to do a... trial boot?

2008-08-16 Thread Mikael Berthe
* Thomas Bertani [EMAIL PROTECTED] [2008-08-16 13:22 +0200]:
 Someone knows if I could have and use 3 different os on the freerunner? one
 on the flash (qtopia) and two in a 2 gb sd (ASU and Debian)?

I've got OM2007.2, OM2008.8 and Qtopia -- works fine.
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Kernel and Dual booting

2008-08-11 Thread Mikael Berthe
* DooD [EMAIL PROTECTED] [2008-08-11 14:38 +0200]:
 
 To prevent opkg from upgrading the kernel try:
 
 opkg flag hold kernel-2.6.24
 opkg flag hold kernel-image-2.6.24

I can do that, but I'd like to have the latest fixes anyway
(esp. teh SD corruption fix as soon as there's one!).

 Altho i think you only need to block the kernel-image-2.6.24 After
 getting a neo1973 kernel and a bad kernel that wouldnt boot from opkg, i do
 all my kernel upgrades with the dfu-util.

Well, it's on the SD card in my case -- and btw using dfu-util isn't
recommended now because you have to keep the modules in sync :)
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Navit?

2008-08-11 Thread Mikael Berthe
* Jeffrey Ratcliffe [EMAIL PROTECTED] [2008-08-11 21:44 +0200]:
 
 Except that when I select Route/Destination, it segfaults, complaining
 that xkbd doesn't exist.
 
 This seems to be known - http://trac.navit-project.org/ticket/96
 
 Has anyone found a workaround?

There's one in the wiki:

A current fix is to set the LANG variable before calling navit. For
example: export LANG=fr_FR.UTF-8; navit

Note that a short syntax (e.g. LANG=fr) would not work. 

(http://wiki.openmoko.org/wiki/Navit)

However, I've been unable to select a destination. :/

HTH,
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Kernel and Dual booting

2008-08-10 Thread Mikael Berthe
* Olivier Berger [EMAIL PROTECTED] [2008-08-10 18:16 +0200]:
 
 Now I need to test if I can boot it on the SD. If it succeeds, I will
 then be able to flash OM 2008.8, and have switched between flash and
 SD.
 
 Dual booting is cool ;)

Yes it is :)
(Actually I'm running 2007 from flash and 2008.8 from SD, unlike you...)


Yet I'm wondering if it isn't dangerous to do an opkg upgrade from
the SD.

Wouldn't that update the FR's kernel?
If it does, then it could break booting from flash as the modules won't
match anymore.

Or is there a way to prevent opkg from flashing the kernel?  It would be
nice to upgrade /uImage.bin instead!
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: InvibleShield at ZAGG : swindling ?!?

2008-08-07 Thread Mikael Berthe
* Mikael Berthe [2008-08-05 14:56 +0200]:
 
 I've ordered one too, I haven't received it.
 
 I complained and they suppposedly sent me another one, which I haven't
 received either (the 2nd one was reshipped on Jully 25th).
 
 They told me (by email) they were sending them via UPS with no tracking,
 so there's nothing we can do to check the status :\

[Not UPS but USPS, btw...]


Well, for your information I finally received it yesterday.

It was ordered on July 3rd,
shipping confirmation on July 7th,
RE-shipping confirmation on July 25th,
arrival on Aug, 6th.

HTH,
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: InvibleShield at ZAGG : swindling ?!?

2008-08-05 Thread Mikael Berthe
* Cédric DUFOUIL [EMAIL PROTECTED] [2008-08-05 14:43 +0200]:
 Hi community,

Hi,

 I ordered an InvibleShield protection at Zagg.com for my freerunner the 18th
 of july and have been charged on my credit card but have no news about my
 order (despite the fact that I sent them emails !!)
 
 I would like to know if any of you had troubles ordering on this web site.
 Did you receive your order ?

I've ordered one too, I haven't received it.

I complained and they suppposedly sent me another one, which I haven't
received either (the 2nd one was reshipped on Jully 25th).

They told me (by email) they were sending them via UPS with no tracking,
so there's nothing we can do to check the status :\

I really think now that I'll never get it...  :-(
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: battery again

2008-08-01 Thread Mikael Berthe
Hi,

* Andy Green [EMAIL PROTECTED] [2008-08-01 08:37 +0200]:
 | Now when I plug it into usb, I get
 |
 | cat /sys/class/i2c-adapter/i2c-0/0-0073/chgmode gives play-only
 |
 | and
 |
 | cat /sys/class/i2c-adapter/i2c-0/0-0073/charger_type gives host/500mA
 | usb mode 100mA

I've almost the same problem, but charger_type says:
charger 1A mode 500mA

(The charger is a USB host...)

 I think I finally understood where this issue is really coming from.
 Did you update your U-Boot in the last couple of weeks?

In my case, yes.  It's
U-Boot 1.3.2+gitr6+ba029a1426bfca169572bf80d50a8b190a6b0e19

(although the file name was
u-boot-gta02v5-1.3.1+gitr6+ba029a1426bfca169572bf80d50a8b190a6b0e19-r0.bin
from Jully 25th.)

Regards,
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: SD card doesn't work on my Freerunner

2008-07-27 Thread Mikael Berthe
* Marek Materzok [EMAIL PROTECTED] [2008-07-27 10:33 +0200]:
 Hello,

Hi,

 My Freerunner fails to recognize the SD card. There are no /dev/mmc* named
 devices in the system. I have 2007.2 image upgraded with opkg from factory
 image.

Not sure it'll help, but FWIW it didn't work for me the first time
either.  I had to remove and reinsert it... no problem since then.

So in case you haven't done that yet, check it's firmly inserted. :)

Regards,
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: strange problem with Intenso 4GB SDHC card

2008-07-23 Thread Mikael Berthe
* Doug Jones [EMAIL PROTECTED] [2008-07-24 01:21 +0200]:
 
 There have been some indications that partition type may have some 
 effect on this problem on the OLPC.

I doubt it.

 So, shrink the default vfat partition that came on the card and put
 an ext3 on there too.  If you want to be adventurous, try some other
 types.

Happens to me with ext3 partitions as well (or mixed vfat/ext3
partitions).

However if I restore the partition table the data are not corrupted,
at least so far it's been all right...
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: GTA02 GPS rework for SD card interference issue

2008-07-23 Thread Mikael Berthe
* Yorick Moko [EMAIL PROTECTED] [2008-07-23 21:03 +0200]:
 i tried to walk with tangogps and sometimes i jumed 1-2 km in a random
 direction and kept drifting
 there were no roads in openstreetmaps for my location, could this
 influence it?

I don't think so so.

As far as I can tell, tango GPS just uses the data provided by the GPS
chip (via gpsd) and displays your location on the top of the map.
It doesn't care if the map is empty, or whatever it contains...

Regards,
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: wifi

2008-07-17 Thread Mikael Berthe
* Tommi Kärkkäinen [EMAIL PROTECTED] [2008-07-16 19:21 +0200]:
 
 It seems random when I can connect and when I can't. It seems DHCP 
 occasionally fails to give the config. At times, however, I am able to 
 connect and use the wifi, and even then I am getting the ioctl message.

Maybe udhcpc gives up before the AP is associated?

BTW, it looks like adding
  iwconfig eth0 essid $ESSID channel $CHANNEL
just before calling wpa_supplicant speeds up things for me.

It hasn't failed since I started doing that, FWIW.

Regards,
-- 
MiKael

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community