Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Steve Calfee <stevecalfee@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] which templates are used?
Date: Mon, 11 Apr 2011 17:06:03 -0700	[thread overview]
Message-ID: <4DA3976B.40807@gmail.com> (raw)
In-Reply-To: <4DA3709E.7070005@daccii.it>

On 04/11/11 14:20, Daniele Salvatore Albano wrote:
> Il 11/04/2011 22:52, Michael Burghart ha scritto:
>> I set this in .config:
>>
>> BR2_ROOTFS_SKELETON_CUSTOM=y
>> BR2_ROOTFS_SKELETON_CUSTOM_PATH="/Save/buildroot-2011.02/fs/skeleton"
>>
>>
>> but it's not used! I made special directories and files in the
>> fs/skeleton but they are nowhere to be seen. What do I have to do to
>> make them visible??
> 
> You need to do a full rebuild or just copy changed/updated files to the 
> target directory (target) and rebuild/regenerate filesystems
> 
Or you can use the
 BR2_ROOTFS_POST_BUILD_SCRIPT:
  ? Specify a script to be run after the build has finished and before
    ?
  ? the BR2 starts packing the files into selected packages.
    ?
    ? This gives users the oportunity to do board-specific cleanups,
      ?
  ? add-ons and the like, so the generated files can be used directly
    ?
  ? without further processing.
    ?
    ? The script is called with the target directory name as first and
      ?
  ? only argument. Make sure the exit code of that script is 0,
    ?
  ? otherwise make will stop after calling it.
    ?

  ? Symbol: BR2_ROOTFS_POST_BUILD_SCRIPT
[=$(TOPDIR)/target/device/beaglebo ?
  ? Type  : string
    ?
  ? Prompt: Custom script to run before packing files
    ?
  ?   Defined at fs/Config.in:3
    ?
  ?   Location:
    ?
  ?     -> Target filesystem options
    ?

Sorry about the mess in the cut and paste from buildroot's menuconfig.


Mine patchrootfs is:
#!/bin/bash
#
# skript which runs before creating rootfs
#
#
MAINDIR=${1}/../../
SRCDIR=${MAINDIR}"target/device/beagleboard/skeleton/*"
DESTDIR=${1}
echo "***************patching some stuff in " ${DESTDIR} from ${SRCDIR}
#echo "DESTDIR " ${DESTDIR}
#echo "SRCDIR " ${SRCDIR}
#ls -l ${SRCDIR} ${SRCDIR}"/etc"
cp -rvp ${SRCDIR} ${DESTDIR}
echo "end of userdefined script before packing rootfs"

So this copies the fs skeleton, recursively from the local directory
after every build. The trick is it just overlays the fs in the target,
so you only have to add files that are specific or changed in your
build. So if you tweak an existing file say in /etc, it will replace
that file. If you add a new file (maybe a script) say in /usr/bin it
will add that from your local tree into the build. The local skeleton
should stay very sparse.

There is no way to remove files that are not needed etc, just remove
them locally in your skeleton and when buildroot is remade with a clean
it will get all sorted out.

Regards, Steve

  reply	other threads:[~2011-04-12  0:06 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-11 20:10 [Buildroot] which templates are used? Michael Burghart
2011-04-11 20:52 ` Michael Burghart
2011-04-11 21:14   ` Bjørn Forsman
2011-04-11 23:34     ` Michael J. Hammel
2011-04-12  6:42     ` Patryk Benderz
2011-04-12 17:54       ` Bjørn Forsman
2011-04-11 21:20   ` Daniele Salvatore Albano
2011-04-12  0:06     ` Steve Calfee [this message]
2011-04-12 13:01       ` Michael S. Zick
2011-04-12 16:52         ` Steve Calfee
2011-04-19 20:25       ` Thomas Petazzoni
2011-04-20 16:59         ` Bjørn Forsman

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=4DA3976B.40807@gmail.com \
    --to=stevecalfee@gmail.com \
    --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