diff options
author | Richard Purdie <richard@openedhand.com> | 2006-12-20 00:00:03 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-12-20 00:00:03 +0000 |
commit | f5b38f9db0cebb0c7c9d9d72fa98a4ff5241db20 (patch) | |
tree | 337089b8ad5015b9485099a263763c0c72cd3a99 /build/conf/local.conf.sample | |
parent | 50bbb7742c760360d1003e441e2a029bee3035df (diff) | |
download | openembedded-core-f5b38f9db0cebb0c7c9d9d72fa98a4ff5241db20.tar.gz openembedded-core-f5b38f9db0cebb0c7c9d9d72fa98a4ff5241db20.tar.bz2 openembedded-core-f5b38f9db0cebb0c7c9d9d72fa98a4ff5241db20.zip |
Remove DISTRO_TYPE, replacing with IMAGE_FEATURES. Documentation is in local.conf.sample
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1053 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'build/conf/local.conf.sample')
-rw-r--r-- | build/conf/local.conf.sample | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/build/conf/local.conf.sample b/build/conf/local.conf.sample index 9fb83dc378..e5d14301b4 100644 --- a/build/conf/local.conf.sample +++ b/build/conf/local.conf.sample @@ -28,12 +28,21 @@ DISTRO = "poky" # For bleeding edge / experimental / unstable package versions # DISTRO = "poky-bleeding" -# DISTRO_TYPE determines the type of images that will be built -# "release" - create a streamlined and secure image -# "debug" - enable easier ssh access -# - include the devtools and testapps packages - -DISTRO_TYPE = "debug" +# IMAGE_FEATURES configuration of the generated images +# (Some of these are automatically added to certain image types) +# "dev-pkgs" - add -dev packages for all installed packages +# (useful if you want to develop against libs in the image) +# "dbg-pkgs" - add -dbg packages for all installed packages +# (adds symbol information for debugging/profiling) +# "apps-core" - core applications +# "apps-pda" - add PDA application suite (contacts, dates, etc.) +# "dev-tools" - add development tools (gcc, make, pkgconfig etc.) +# "dbg-tools" - add debugging tools (gdb, strace, oprofile, etc.) +# "test-tools" - add useful testing tools (ts_print, aplay, arecord etc.) +# "debug-tweaks" - make an image for suitable of development +# e.g. ssh root access has a blank password + +IMAGE_FEATURES = "dbg-tools test-tools debug-tweaks" # A list of packaging systems used in generated images # The first package type listed will be used for rootfs generation |