diff options
author | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2014-09-18 21:39:28 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-09-21 19:41:12 +0200 |
commit | 32ef7396f77dd5c48f8f5a0de1e1d7d6a05ed13c (patch) | |
tree | 67d27717d9b64e5c314c6782112467da3cb20a76 /docs/manual | |
parent | 75de9ac6f286a53b10b1a6dd6ddde286fb61d4de (diff) | |
download | buildroot-32ef7396f77dd5c48f8f5a0de1e1d7d6a05ed13c.tar.gz buildroot-32ef7396f77dd5c48f8f5a0de1e1d7d6a05ed13c.zip |
manual/user guide/customization: re-order introduction
This patch re-orders the enumeration of typical project customization
actions:
- move the 'patching packages' section downwards.
- group the entries on post-build scripts and rootfs-overlays to match the
actual section text.
Since indented enumerations use asterixes, update the top-level entries with
asterixes too for consistency.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'docs/manual')
-rw-r--r-- | docs/manual/customize.txt | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/docs/manual/customize.txt b/docs/manual/customize.txt index c001cb1c95..85c1fc8203 100644 --- a/docs/manual/customize.txt +++ b/docs/manual/customize.txt @@ -6,20 +6,21 @@ Typical actions you may need to perform for a given project are: -- configuring Buildroot (including build options and toolchain, +* configuring Buildroot (including build options and toolchain, bootloader, kernel, package and filesystem image type selection) -- configuring other components, like the Linux kernel and BusyBox -- adding project-specific patches to some packages (using - +BR2_GLOBAL_PATCH_DIR+) -- adding or overwriting files on the target filesystem (using - +BR2_ROOTFS_OVERLAY+) -- modifying or deleting files on the target filesystem (using - +BR2_ROOTFS_POST_BUILD_SCRIPT+) -- running arbitrary commands prior to generating the filesystem image - (using +BR2_ROOTFS_POST_BUILD_SCRIPT+) -- running arbitrary commands after generating the filesystem image +* configuring other components, like the Linux kernel and BusyBox +* customizing the generated target filesystem + ** adding or overwriting files on the target filesystem (using + +BR2_ROOTFS_OVERLAY+) + ** modifying or deleting files on the target filesystem (using + +BR2_ROOTFS_POST_BUILD_SCRIPT+) + ** running arbitrary commands prior to generating the filesystem image + (using +BR2_ROOTFS_POST_BUILD_SCRIPT+) +* running arbitrary commands after generating the filesystem image (using +BR2_ROOTFS_POST_IMAGE_SCRIPT+) -- adding project-specific packages +* adding project-specific patches to some packages (using + +BR2_GLOBAL_PATCH_DIR+) +* adding project-specific packages An important note regarding such 'project-specific' customizations: please carefully consider which changes are indeed project-specific and @@ -45,6 +46,6 @@ include::customize-rootfs.txt[] include::customize-post-image.txt[] -include::customize-store.txt[] - include::customize-packages.txt[] + +include::customize-store.txt[] |