Re: [OpenWrt-Devel] [PATCH] Update mjpeg-streamer package

2011-09-13 Thread Roberto Riggio
It is the output of svn diff. Rev 150 was from the experimental branch 
so I was not sure how stable it was (considering the mjpeg streamer is 
pretty volatile).


R.

On 13/09/2011 02:52, Otto Solares Cabrera wrote:

On Thu, Sep 08, 2011 at 10:31:31AM +0200, Roberto Riggio wrote:


This patch upgrades the mjpeg-streamer package to the latest svn
revision. It also closes track entry #9896 in the the newer version
moved to v4l2.


This patch it doesn't apply.

mjpg-streamer r150 works for me too.
-
  Otto
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel



--

Roberto Riggio, Ph.D.
CREATE-NET
Network  Security Solutions for Pervasive Computing Systems (iNSPIRE)
Senior Researcher
Via alla Cascata 56/D - 38123 Povo Trento (Italy)
e-mail: roberto.rig...@create-net.org
Tel: (+39) 0461 408400 - interno/extension 708
Fax: (+39) 0461 421157
www.create-net.org/~rriggio


The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited according to
the Italian Law 196/2003 of the Legislature. If you received this in
error, please contact the sender and delete the material from any
computer.

Le informazioni contenute in questo messaggio di posta elettronica e nei
file allegati sono da considerarsi strettamente riservate. Il loro
utilizzo e' consentito esclusivamente al destinatario del messaggio, per
le finalita' indicate nel messaggio stesso. Qualora riceveste questo
messaggio senza esserne il destinatario, Vi preghiamo cortesemente di
darcene notizia via e-mail e di procedere alla cancellazione del
messaggio stesso dal Vostro sistema. Trattenere il messaggio stesso,
divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo,
od utilizzarlo per finalita' diverse, costituisce comportamento
contrario ai principi dettati dal D. Lgs. 196/2003.
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] ddns: add provider

2011-09-13 Thread open...@dnsdynamic.org
Hi,

Hope this is the correct way of going about this. I'd like to offer a
patch that will allow openwrt users to use dnsdynamic.org as their
dynamic dns provider.

Thanks

Eddie Davis

Index: net/ddns-scripts/files/usr/lib/ddns/services
===
--- net/ddns-scripts/files/usr/lib/ddns/services(revision 28221)
+++ net/ddns-scripts/files/usr/lib/ddns/services(working copy)
@@ -34,3 +34,6 @@

 # Hurricane Electric Dynamic DNS
 he.net   
http://[DOMAIN]:[PASSWORD]@dyn.dns.he.net/nic/update?hostname=[DOMAIN]myip=[IP];
+
+# DNSdynamic.org
+dnsdynamic.org
http://[USERNAME]:[PASSWORD]@www.dnsdynamic.org/api/?hostname=[DOMAIN]myip=[IP];
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] OpenJDK 6 package submission

2011-09-13 Thread Felix Fietkau

Hi Waldemar,

sorry for the delay, here are some comments on your patch:

On 2011-08-31 9:26 PM, Waldemar Brodkorb wrote:

Hello OpenWrt developers,

I would like to contribute a OpenJDK 6 package.
Attached is my first shot with svn diff.

The patch contains following changes:
- new tools to build a OpenJDK bootstrap for the host including Qemu
   for special actions when cross-compiling OpenJDK later
- two packages as prerequisite (libXinerama, libXp) for OpenJDK
- a patch for libffi package, to fix the wrong include path given
   by the pkg-config script
- a patch for uClibc to resolve $ORIGIN in RPATH
- the openjdk package

Open issues:

1.) gcc/g++ binaries in toolchain

OpenJDK uses the variable ALT_COMPILER_PATH to find the cross-compiler in
short form (gcc/g++). But when using the compiler from 
$(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME)/bin
g++ fails, because a wrong relative path to cc1plus is used. As a
workaround I copy the binaries to the parent directory and everything compiles 
fine:
staging_dir/toolchain-i386_gcc-4.5-linaro_uClibc-0.9.32/i486-openwrt-linux-uclibc/bin$
 cp * ..
How to solve this in a smarter acceptable way?
How about creating something that matches the expected structure for 
OpenJDK within its PKG_BUILD_DIR by using hard links or symlinks?
I'd like to avoid having package specific workarounds in the structure 
of the toolchain dir.



2.) $ORIGIN in RPATH

The java binary uses following to find dependent libraries:
Dynamic Section:
   NEEDED   libz.so.1
   NEEDED   libpthread.so.0
   NEEDED   libjli.so
   NEEDED   libdl.so.2
   NEEDED   libc.so.6
   SONAME   lib.so
   RPATH$ORIGIN/../lib/i386/jli:$ORIGIN/../jre/lib/i386/jli

But uClibc does not support $ORIGIN. It is a patch for uClibc included, which
adds support for $ORIGIN. It is fetched from here:
http://www.mail-archive.com/uclibc@uclibc.org/msg06444.html
The patch seems a bit intrusive and it apparently wasn't merged 
upstream. Could we not change the linker command to use absolute paths 
for RPATH instead of using $ORIGIN?



3.) package dependencies

When activating the package dependencies, DISPLAY_SUPPORT is automatically 
added and
I can't choose the package for Routerboard 532 or Alix 2. Java is headless 
useful, but
requires X11 to compile (for the optional AWT).
How can I fix this?
Can't we just add a patch to OpenJDK making compiling of AWT, SWING, 
etc. optional?



4.) host dependencies for bootstrap openjdk

How to handle this? OpenJDK requires alsa and other x11 related stuff
to compile on the host. Should any prerequisite checks be implemented? Where is 
the
right place to add them?
You can add packages that build the required host components. I'd like 
to avoid adding prereq checks that make the build less portable.



5.) recompile issues in tools

The gcc package is always recompiled, when the tools compile is not
completely finished. It is just annoying, when adding or debugging tools.

Odd, I've never seen that on any of my systems.

- Felix

___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] Valgrind for MIPS

2011-09-13 Thread Florian Fainelli
Hello,

On Tuesday 13 September 2011 12:27:16 Tanguy Bouzeloc wrote:
 Hello,
 
 I prepare a valgrind-mips package and it seems okay for bcm63xx target
 with uclibc.
 
 It requires gcc 4.4+ in order to build and I've to force -01
 optimisation level
 (Os or -O2 eventually freeze gcc).

Are you sure this is working? valgrind does not repport any memory allocation 
for me, which looks suspicious to me. This was tested on malta+uclibc.

Otherwise, you can just provide a patch which updates the existing valgrind 
package, there is no need to create a specific valgrind-mips package.

Thank you.

 
 Regards,
 Tanguy.
 
 On 09/06/2011 05:37 PM, Raphaël HUCK wrote:
  Hi all,
  
  I've just stumbled upon a patch adding MIPS support to Valgrind. It is
  applicable for MIPS32r2 instruction set, and supports both little-endian
  and big-endian cores.
  
  It can be applied to the revision 11845 (version 3.7.0.SVN) from the
  main Valgrind trunk.
  
  However, as the Valgrind package in OpenWrt
  (https://dev.openwrt.org/browser/packages/utils/valgrind/Makefile) uses
  version 3.3.1, how is it possible to package Valgrind/MIPS for OpenWrt
  without conflicting with the existing package?
  
  For those who are interested in this patch, see
  https://bugs.kde.org/show_bug.cgi?id=270777#c12
  
  Thanks,
  
  -Raphael
  ___
  openwrt-devel mailing list
  openwrt-devel@lists.openwrt.org
  https://lists.openwrt.org/mailman/listinfo/openwrt-devel

-- 
Florian
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] src-git: pull broken in scripts/feeds

2011-09-13 Thread Raphaël HUCK
Hi all,

why is the following comment present in scripts/feeds [1]?

# src-git: pull broken

Does it mean that it's not possible to update feeds using the src-git
method?

Thanks!

-Raphael


[1] https://dev.openwrt.org/browser/trunk/scripts/feeds#L138
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH 3/4] bsdiff: add bsdiff package

2011-09-13 Thread Florian Fainelli
On Wednesday 31 August 2011 09:51:15 Alexander Gordeev wrote:
 Signed-off-by: Alexander Gordeev lasa...@lvk.cs.msu.su
 ---
Applied in r28230, thanks!
-- 
Florian
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH 4/4] xdelta3: add xdelta3 package

2011-09-13 Thread Florian Fainelli
On Wednesday 31 August 2011 09:51:16 Alexander Gordeev wrote:
 Signed-off-by: Alexander Gordeev lasa...@lvk.cs.msu.su
 ---
Applied in r28231, thanks!
-- 
Florian
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] packages: add jansson JSON library

2011-09-13 Thread Florian Fainelli
On Tuesday 06 September 2011 23:21:20 Roman Yeryomin wrote:
 Signed-off-by: Roman Yeryomin ro...@advem.lv
 --
Applied in r28233, thanks!
-- 
Florian
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH 1/4] lrzsz: create extra symlinks for minicom

2011-09-13 Thread Florian Fainelli
On Wednesday 31 August 2011 09:51:13 Alexander Gordeev wrote:
 Minicom wants rz/rx/rb when asked to transfer a file.
 
 Signed-off-by: Alexander Gordeev lasa...@lvk.cs.msu.su
 ---
Applied in r28227, thanks!
-- 
Florian
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH 2/4] bzip2: build libbz2 package

2011-09-13 Thread Florian Fainelli
On Wednesday 31 August 2011 09:51:14 Alexander Gordeev wrote:
 Build libbz2 and make bzip2 depend on it. libbz2 is necessary for
 packaging bsdiff.
 Also update perl-compress-bzip2 package accordingly.
 
 Signed-off-by: Alexander Gordeev lasa...@lvk.cs.msu.su
 ---
Applied in r28228 and r28229, thanks!
-- 
Florian
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] ar71xx: Stability issues on DIR-615 E4 - [RESOLVED]

2011-09-13 Thread Alexey Loukianov
13.09.2011 06:53, Alexey Loukianov wrote:
 Ok, I had managed to get the kernel panic dump, thx. to Florian Fainelli and 
 his
 hint about /sys/kernel/debug/crashlog.
 
 To the tail of this message I attach oops logs either in vanilla state and
 parsed by ksymoops. I suspect that this oops might be the same as had been
 reported in ticket #10071 and fixed in r28213. Will check it and report back.

So far so good. Firmware built against r28222 had been running on my dir-615-e4
box for about 22 hours without any issues. Looks like it was really the bug
#10071 just like I had been suspecting.

Florian, thanks again for your help, it would be extremely hard to debug this
issue without your invaluable help.

-- 
Best regards,
Alexey Loukianov  mailto:mooro...@mail.ru
System Engineer,Mob.:+7(926)218-1320
*nix Specialist




signature.asc
Description: OpenPGP digital signature
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel