aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerald Britton <gbritton@doomcom.org>2004-05-27 18:36:06 +0000
committerGerald Britton <gbritton@doomcom.org>2004-05-27 18:36:06 +0000
commit2f42d96097b3e05c9f38d8426d1a1e77169312aa (patch)
tree4dc06126caf40756665bfb4e8d00cafb5f98039b
parent3287e53a7c135062e71e24e19f59e0974e331e2d (diff)
downloadopenembedded-2f42d96097b3e05c9f38d8426d1a1e77169312aa.tar.gz
add a quick example to local.conf.sample
BKrev: 40b63516_ftibhNe7UcDB7AjLpTqXw
-rw-r--r--conf/local.conf.sample15
1 files changed, 15 insertions, 0 deletions
diff --git a/conf/local.conf.sample b/conf/local.conf.sample
index 126d2088fd..14117f96a2 100644
--- a/conf/local.conf.sample
+++ b/conf/local.conf.sample
@@ -20,6 +20,21 @@
# will build into ${TMPDIR} which defaults to ${TOPDIR}/tmp (${TOPDIR} is
# the current directory when oemake was executed).
+#
+# Quick example of the described stuff above (builds the busybox packages):
+#
+# mkdir $HOME/sources
+# mkdir $HOME/oe
+# .. clone oe and packages into $HOME/oe/oe and $HOME/oe/packages ..
+# mkdir $HOME/oe/build-arm
+# mkdir $HOME/oe/build-arm/conf
+# cd $HOME/oe/build-arm
+# cp ../packages/conf/local.conf.sample conf/local.conf
+# .. EDIT conf/local.conf to set OEFILES and other vars properly!! ..
+# oemake busybox
+# .. busybox is built in tmp/ from the current dir ($HOME/oe/build-arm) ..
+#
+
# Use this to specify where OE should place the downloaded sources into
DL_DIR = "${HOME}/sources"