Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/5] target: ensure target/ dir is writable
Date: Tue, 28 Jan 2014 19:25:03 +0100	[thread overview]
Message-ID: <20140128182503.GB3466@free.fr> (raw)
In-Reply-To: <CANxTyt46Sx2m6szFYmHgPmX4vR7ocvwjCEwPdbANNDRE7BJqNg@mail.gmail.com>

Danomi, All,

On 2014-01-27 19:31 -0500, Danomi Manchego spake thusly:
> On Thu, Nov 14, 2013 at 1:46 PM, Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> > From: Nathan Lynch <ntl@pobox.com>
> >
> > If the source target skeleton is read-only (eg. because Buildroot's
> > source dir is), modifications to the output target (such as creating
> > /etc/hostname and /etc/issue) fail.
> >
> > (This can happen if the Buildroot source dir is NFS-mounted read-only
> > to be shared between different machines, for example).
> >
> > Signed-off-by: Nathan Lynch <ntl@pobox.com>
> > [yann.morin.1998 at free.fr: we use rsync now, not cp; --chmod=Du+w
> >  suggested by Arnout; clarify commit log]
> > Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> > Cc: Arnout Vandecappelle <arnout@mind.be>
> > ---
> >  Makefile | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/Makefile b/Makefile
> > index c7a0a6d..b2b962c 100644
> > --- a/Makefile
> > +++ b/Makefile
> > @@ -433,7 +433,7 @@ RSYNC_VCS_EXCLUSIONS = \
> >  $(BUILD_DIR)/.root:
> >         mkdir -p $(TARGET_DIR)
> >         rsync -a $(RSYNC_VCS_EXCLUSIONS) \
> > -               --exclude .empty --exclude '*~' \
> > +               --chmod=Du+w --exclude .empty --exclude '*~' \
> >                 $(TARGET_SKELETON)/ $(TARGET_DIR)/
> >         cp support/misc/target-dir-warning.txt $(TARGET_DIR_WARNING_FILE)
> >         @ln -snf lib $(TARGET_DIR)/$(LIB_SYMLINK)
> > @@ -508,7 +508,7 @@ endif
> >         @$(foreach d, $(call qstrip,$(BR2_ROOTFS_OVERLAY)), \
> >                 $(call MESSAGE,"Copying overlay $(d)"); \
> >                 rsync -a $(RSYNC_VCS_EXCLUSIONS) \
> > -                       --exclude .empty --exclude '*~' \
> > +                       --chmod=Du+w --exclude .empty --exclude '*~' \
> >                         $(d)/ $(TARGET_DIR)$(sep))
> >
> >         @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_BUILD_SCRIPT)), \
> > --
> > 1.8.1.2
> >
> > _______________________________________________
> > buildroot mailing list
> > buildroot at busybox.net
> > http://lists.busybox.net/mailman/listinfo/buildroot
> 
> What happened to this series (5 patches fixing issues with RO tree)?
> I don't see these patches in Patchwork - did they get rejected?

No, I just marked them as "Changes requested" since there were some
comments about them.

I still have them in my tree, I just need to refresh them, apply the
requested changes, and resubmit.

One can do so much in a day... ;-)

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

  reply	other threads:[~2014-01-28 18:25 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-14 18:46 [Buildroot] [pull request v2] Pull request for branch yem/patchwork Yann E. MORIN
2013-11-14 18:46 ` [Buildroot] [PATCH 1/5] target: ensure target/ dir is writable Yann E. MORIN
2014-01-28  0:31   ` Danomi Manchego
2014-01-28 18:25     ` Yann E. MORIN [this message]
2014-01-28 18:37       ` Danomi Manchego
2013-11-14 18:46 ` [Buildroot] [PATCH 2/5] busybox: ensure $(BUSYBOX_BUILD_CONFIG) " Yann E. MORIN
2013-11-14 18:46 ` [Buildroot] [PATCH 3/5] linux: ensure buildroot_defconfig " Yann E. MORIN
2013-11-14 19:24   ` Danomi Manchego
2013-11-14 18:46 ` [Buildroot] [PATCH 4/5] package/uClibc: ensure .oldconfig " Yann E. MORIN
2013-11-15  8:18   ` Thomas Petazzoni
2013-11-14 18:46 ` [Buildroot] [PATCH 5/5] fs: ensure $(TARGET_DIR_WARNING_FILE) " Yann E. MORIN
  -- strict thread matches above, loose matches on Subject: below --
2014-01-28 20:11 [Buildroot] [PATCH 0/5 v3] Ensure files we modify are writable Yann E. MORIN
2014-01-28 20:11 ` [Buildroot] [PATCH 1/5] target: ensure target/ dir is writable Yann E. MORIN
2014-01-28 21:54   ` Peter Korsgaard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140128182503.GB3466@free.fr \
    --to=yann.morin.1998@free.fr \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox