diff options
author | Matthew Allum <mallum@openedhand.com> | 2005-08-31 12:44:02 +0000 |
---|---|---|
committer | Matthew Allum <mallum@openedhand.com> | 2005-08-31 12:44:02 +0000 |
commit | a716d991156aa04939496ba177c29ff87a26608c (patch) | |
tree | 2870e62e9c3130ad3d6c999e5490b4caa3930dfa | |
parent | ceb71677cf08997de6d0e8d50b9e7aadcc4048c9 (diff) | |
download | poky-a716d991156aa04939496ba177c29ff87a26608c.tar.gz |
more local.conf rejigging
git-svn-id: https://svn.o-hand.com/repos/poky@6 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rwxr-xr-x | build/conf/local.conf.sample (renamed from build/conf/local.conf) | 4 | ||||
-rw-r--r-- | openembedded/conf/local.conf.sample | 5 | ||||
-rwxr-xr-x | setdevenv | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/build/conf/local.conf b/build/conf/local.conf.sample index 49d6fc7e1e..f933fb183f 100755 --- a/build/conf/local.conf +++ b/build/conf/local.conf.sample | |||
@@ -1,6 +1,6 @@ | |||
1 | # Where to cache the files OE downloads | 1 | # Where to cache the files OE downloads |
2 | DL_DIR = "/usr/oe/sources" | 2 | DL_DIR = "POKYROOT/sources" |
3 | BBFILES := "/usr/ohoe/openembedded/packages/*/*.bb" | 3 | BBFILES := "POKYROOT/openembedded/packages/*/*.bb" |
4 | 4 | ||
5 | BBMASK = "" | 5 | BBMASK = "" |
6 | PREFERRED_PROVIDERS = "virtual/qte:qte-for-opie virtual/libqpe:libqpe-opie" | 6 | PREFERRED_PROVIDERS = "virtual/qte:qte-for-opie virtual/libqpe:libqpe-opie" |
diff --git a/openembedded/conf/local.conf.sample b/openembedded/conf/local.conf.sample index 489b0deb19..52a0d5f120 100644 --- a/openembedded/conf/local.conf.sample +++ b/openembedded/conf/local.conf.sample | |||
@@ -1,3 +1,8 @@ | |||
1 | # XXXX NOTE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | ||
2 | # | ||
3 | # This file is not used, see build/conf/local.conf instead | ||
4 | # | ||
5 | # XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | ||
1 | # | 6 | # |
2 | # OpenEmbedded local configuration file (sample) | 7 | # OpenEmbedded local configuration file (sample) |
3 | # | 8 | # |
@@ -24,9 +24,9 @@ if ! (test -d $BBDIR && test -d $PKGDIR && test -d $BUILDDIR); then | |||
24 | exit 1 | 24 | exit 1 |
25 | fi | 25 | fi |
26 | 26 | ||
27 | if !(test -r $PKGDIR/conf/local.conf); then | 27 | if !(test -r $BUILDDIR/conf/local.conf); then |
28 | echo "Setting up initial '$PKGDIR/conf/local.conf'." | 28 | echo "Setting up initial '$PKGDIR/conf/local.conf'." |
29 | cat $PKGDIR/conf/local.conf.sample | sed -e"s|POKYROOT|${OEROOT}|" > $PKGDIR/conf/local.conf | 29 | cat $BUILDDIR/conf/local.conf.sample | sed -e"s|POKYROOT|${OEROOT}|" > $BUILDDIR/conf/local.conf |
30 | fi | 30 | fi |
31 | 31 | ||
32 | BBPATH=$BBDIR | 32 | BBPATH=$BBDIR |