annotate sources/README @ 871:b274eb556b50

Merge common uclibc miniconfig stuff into baseconfig-uClibc, and add the few lines that vary per target to each target's settings file.
author Rob Landley <rob@landley.net>
date Fri, 30 Oct 2009 03:45:47 -0500
parents eda31d43d89f
children 626288dd5cf3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
858
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
1 The following files live here:
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
2
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
3 include.sh: Common code included by every build stage. Defines many
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
4 environment variables.
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
5
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
6 functions.sh: Function definitions, normally included from include.sh.
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
7
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
8 timeout.sh: Wrapper to run a command line with a timeout.
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
9
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
10 trimconfig-busybox: Busybox config file to switch off bits of "allyesconfig"
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
11 that don't work on all targets.
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
12
871
b274eb556b50 Merge common uclibc miniconfig stuff into baseconfig-uClibc, and add the few lines that vary per target to each target's settings file.
Rob Landley <rob@landley.net>
parents: 858
diff changeset
13 baseconfig-uClibc: Common miniconfig shared by all architectures, to which
b274eb556b50 Merge common uclibc miniconfig stuff into baseconfig-uClibc, and add the few lines that vary per target to each target's settings file.
Rob Landley <rob@landley.net>
parents: 858
diff changeset
14 $UCLIBC_CONFIG from the target/$ARCH/settings is appended.
b274eb556b50 Merge common uclibc miniconfig stuff into baseconfig-uClibc, and add the few lines that vary per target to each target's settings file.
Rob Landley <rob@landley.net>
parents: 858
diff changeset
15
858
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
16 The following subdirectories live here:
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
17
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
18 more: Additional scripts the user can run, but which aren't part of build.sh.
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
19 This directory contains external user interfaces, just obscure ones.
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
20
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
21 native: Files copied verbatim into each architecture's root-filesystem image.
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
22
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
23 toys: Various small code snippets written or maintained by this project.
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
24
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
25 sections: Package build scripts called more than once during build.sh.
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
26 This is duplicate code factored out into a common location.
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
27
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
28 patches: Patches applied to the packages listed in download.sh by "setupfor".
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
29 Each package has "$PACKAGE-*.patch" applied in alphabetical order,
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
30 or "alt-$PACKAGE-*.patch" for USE_UNSTABLE versions.
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
31
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
32 targets: Configuration for each target platform, parsed by read_arch_dir()
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
33 and getconfig() in functions.sh. Each subdirectory is a
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
34 target name, and contains at least four files:
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
35
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
36 settings: Environment variables needed by the build.
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
37
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
38 miniconfig-linux: linux kernel .config compressed by toys/miniconfig.sh
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
39 (If miniconfig-alt-linux exists, USE_UNSTABLE=linux
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
40 will use that instead.)
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
41
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
42 miniconfig-uClibc: uClibc .config compressed by toys/miniconfig.sh
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
43 (If miniconfig-alt-uClibc exists, USE_UNSTABLE=uClibc
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
44 will use that instead.)
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
45
eda31d43d89f The sources directory needs a README.
Rob Landley <rob@landley.net>
parents:
diff changeset
46 description: Simple documentation about the platform