Re: Mounting Filesystem over existing directory

2012-06-04 Thread Sameer Naik
Hello Laurent, Thanks for the insightful response. On Fri, Jun 1, 2012 at 12:12 PM, Laurent Bercot ska-dietl...@skarnet.org wrote: Out of curiosity, Is is possible to free up the resources used by initramfs. I would be very interested in knowing how this can be done.  That is the point of

Re: Bug in busybox sed - this one is real

2012-06-04 Thread Denys Vlasenko
On Sun, Jun 3, 2012 at 3:54 PM, Rich Felker dal...@aerifal.cx wrote: Ping. Anybody looked at this? I filed it as bug # 5246. fixed in git: commit 21f6fbf545e7fa58f0eaa444001a9d25bc37c4eb Author: Denys Vlasenko vda.li...@googlemail.com Date: Mon Jun 4 14:44:47 2012 +0200 sed: fix zero

Re: Bug in busybox sed - this one is real

2012-06-04 Thread Sedat Dilek
[1] does NOT show recent commits to busybox in Git-Web whereas buildroot commits are displayed. Can you or an admin please check this? Thanks. - Sedat - [1] http://git.busybox.net/busybox/ On Mon, Jun 4, 2012 at 2:56 PM, Denys Vlasenko vda.li...@googlemail.com wrote: On Sun, Jun 3, 2012 at

Re: Bug in busybox sed - this one is real

2012-06-04 Thread Sedat Dilek
Hmm, [2] shows recent changes, suspect! - Sedat - [2] http://git.busybox.net/busybox/log/ On Mon, Jun 4, 2012 at 3:01 PM, Sedat Dilek sedat.di...@googlemail.com wrote: [1] does NOT show recent commits to busybox in Git-Web whereas buildroot commits are displayed. Can you or an admin please

Re: Bug in busybox sed - this one is real

2012-06-04 Thread Peter Korsgaard
Sedat == Sedat Dilek sedat.di...@googlemail.com writes: Sedat [1] does NOT show recent commits to busybox in Git-Web whereas Sedat buildroot commits are displayed. Sedat Can you or an admin please check this? Yes, there's something funky going on - We have it as well with buildroot if you

Re: Bug in busybox sed - this one is real

2012-06-04 Thread Sedat Dilek
On Mon, Jun 4, 2012 at 3:23 PM, Peter Korsgaard jac...@sunsite.dk wrote: Sedat == Sedat Dilek sedat.di...@googlemail.com writes:  Sedat [1] does NOT show recent commits to busybox in Git-Web whereas  Sedat buildroot commits are displayed.  Sedat Can you or an admin please check this? Yes,

Re: Mounting Filesystem over existing directory

2012-06-04 Thread Michael Conrad
On 06/04/2012 10:06 AM, Laurent Bercot wrote: Is that correct. In my system i can update the kernel boot args. But i believe that if the mounting of the root partition fails then the kernel will panic. You can do some basic tests before rebooting, including whether the mounting works (mount

[PATCH 1/5] add the simple 'getsid' syscall, fixes kill and friends

2012-06-04 Thread Tias Guns
patch modified from 'misc-syscalls' by Dan Drown: http://dan.drown.org/android/src/busybox/ Signed-off-by: Tias Guns t...@ulyssis.org --- libbb/Kbuild.src |3 +++ libbb/getsid.c |6 ++ 2 files changed, 9 insertions(+) create mode 100644 libbb/getsid.c diff --git

[PATCH 2/5] add the simple 'stime' syscall, fixes date and rdate

2012-06-04 Thread Tias Guns
patch modified from 'misc-syscalls' by Dan Drown: http://dan.drown.org/android/src/busybox/ Signed-off-by: Tias Guns t...@ulyssis.org --- libbb/Kbuild.src |2 ++ libbb/stime.c| 10 ++ 2 files changed, 12 insertions(+) create mode 100644 libbb/stime.c diff --git

[PATCH 4/5] add the simple 'sethostname' syscall, fixes hostname

2012-06-04 Thread Tias Guns
patch modified from 'misc-syscalls' by Dan Drown: http://dan.drown.org/android/src/busybox/ Signed-off-by: Tias Guns t...@ulyssis.org --- libbb/Kbuild.src|1 + libbb/sethostname.c |6 ++ 2 files changed, 7 insertions(+) create mode 100644 libbb/sethostname.c diff --git

[PATCH 5/5] add the simple 'adjtimex' syscall

2012-06-04 Thread Tias Guns
patch modified from 'no-sys-timex' from Dan Drown http://dan.drown.org/android/src/busybox/ Signed-off-by: Tias Guns t...@ulyssis.org --- libbb/Kbuild.src |1 + libbb/adjtimex.c |7 +++ 2 files changed, 8 insertions(+) create mode 100644 libbb/adjtimex.c diff --git

[PATCH 3/5] add the simple 'pivot_root' syscall, fixes pivot_root

2012-06-04 Thread Tias Guns
patch modified from 'misc-syscalls' by Dan Drown: http://dan.drown.org/android/src/busybox/ Signed-off-by: Tias Guns t...@ulyssis.org --- libbb/Kbuild.src |1 + libbb/pivot_root.c |5 + 2 files changed, 6 insertions(+) create mode 100644 libbb/pivot_root.c diff --git

android fixes, second series

2012-06-04 Thread Tias Guns
Dear Busybox developers, Here is the second series. It contains a number of simple syscalls that are missing in 'bionic', android's libc. While ideally these syscalls would be added to bionic, there is no sign that this is gonna happen any time soon. In a previous thread, Tito suggested that