diff options
author | Matthew Allum <mallum@openedhand.com> | 2005-08-31 11:21:44 +0000 |
---|---|---|
committer | Matthew Allum <mallum@openedhand.com> | 2005-08-31 11:21:44 +0000 |
commit | 8e65c870f9b2edb71b5e39d4a7314eca0c5a0f9a (patch) | |
tree | 1bd78c7d1e61885dbac536918fa337c28e2e8592 /openembedded | |
parent | d3fa3b8f9c1e302a532cee20278f38fc59cc32cb (diff) | |
download | openembedded-core-8e65c870f9b2edb71b5e39d4a7314eca0c5a0f9a.tar.gz openembedded-core-8e65c870f9b2edb71b5e39d4a7314eca0c5a0f9a.tar.bz2 openembedded-core-8e65c870f9b2edb71b5e39d4a7314eca0c5a0f9a.zip |
Make setdevenv automagically setup local.conf if it dont exist
git-svn-id: https://svn.o-hand.com/repos/poky@4 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded')
-rw-r--r-- | openembedded/conf/local.conf.sample | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/openembedded/conf/local.conf.sample b/openembedded/conf/local.conf.sample index 7a7afb4277..489b0deb19 100644 --- a/openembedded/conf/local.conf.sample +++ b/openembedded/conf/local.conf.sample @@ -20,11 +20,12 @@ # expansion. Stuff like starting with ${HOME} or ${TOPDIR} is ok). # Use this to specify where BitBake should place the downloaded sources into -DL_DIR = "${HOME}/sources" +DL_DIR = "POKYROOT/sources" # Delete the line below. Then specify which .bb files to consider for # your build. Typically this will be something like BBFILES = "/path/to/openembedded/packages/*/*.bb" -BBFILES := "${@bb.fatal('Edit your conf/local.conf: BBFILES')}" +#BBFILES := "${@bb.fatal('Edit your conf/local.conf: BBFILES')}" +BBFILES := "POKYROOT/openembedded/packages/*/*.bb" # Use the BBMASK below to instruct BitBake to _NOT_ consider some .bb files # This is a regulary expression, so be sure to get your parenthesis balanced. @@ -119,4 +120,4 @@ BBINCLUDELOGS = "yes" CVS_TARBALL_STASH = "http://www.oesources.org/source/current/" # EDIT THIS FILE and then remove the line below before using! -REMOVE_THIS_LINE:="${@oe.fatal('Read the comments in your conf/local.conf')}" +#REMOVE_THIS_LINE:="${@oe.fatal('Read the comments in your conf/local.conf')}" |