From 83d151fbe827a0400ce41344003ec5c8b1e3bad6 Mon Sep 17 00:00:00 2001 From: Ronan Le Martret Date: Fri, 5 Apr 2013 14:56:29 +0200 Subject: [PATCH] - update local.conf sample. --- conf/local.conf | 42 ++++++++++++++++++------------------------ 1 file changed, 18 insertions(+), 24 deletions(-) diff --git a/conf/local.conf b/conf/local.conf index a3792b1..c4f3930 100644 --- a/conf/local.conf +++ b/conf/local.conf @@ -10,7 +10,16 @@ # default values are provided as comments to show people example syntax. Enabling # the option is a question of removing the # character and making any change to the # variable as required. +#DISTRO_FEATURES += "systemd" + + +PREFERRED_PROVIDER_coreutils ?= "tizen-coreutils" +PREFERRED_PROVIDER_python-xml ?= "python-base" +PREFERRED_PROVIDER_libpcre ?= "pcre" + + +### DISTRO_FEATURES += "systemd" # # Parallelism Options # @@ -40,7 +49,8 @@ PARALLEL_MAKE = "-j 16" #MACHINE ?= "qemux86-64" # # This sets the default machine to be qemux86 if no other machine is selected: -MACHINE ??= "qemux86-64" +MACHINE ??= "qemux86" + # # Where to place downloads # @@ -53,7 +63,8 @@ MACHINE ??= "qemux86-64" # The default is a downloads directory under TOPDIR which is the build directory. # #DL_DIR ?= "${TOPDIR}/downloads" -DL_DIR ?="/home/ronanguirec/Documents/yocto/download" +DL_DIR ?= "/home/ronanguirec/yoctoTizen_IVI/downloads" + # # Where to place shared-state files # @@ -69,7 +80,7 @@ DL_DIR ?="/home/ronanguirec/Documents/yocto/download" # The default is a sstate-cache directory under TOPDIR. # #SSTATE_DIR ?= "${TOPDIR}/sstate-cache" -SSTATE_DIR ?= "/home/ronanguirec/Documents/yocto/sstate-cache" +SSTATE_DIR ?= "/home/ronanguirec/yoctoTizen_IVI/sstate-cache" # # Where to place the build output # @@ -82,7 +93,7 @@ SSTATE_DIR ?= "/home/ronanguirec/Documents/yocto/sstate-cache" # #TMPDIR = "${TOPDIR}/tmp" -DISTRO ?= "tizen" + # # Package Management configuration # @@ -95,8 +106,8 @@ DISTRO ?= "tizen" # - 'package_rpm' for rpm style packages # E.g.: PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk" # We default to ipk: -#PACKAGE_CLASSES ?= "package_ipk" PACKAGE_CLASSES ?= "package_rpm" + # # SDK/ADT target architecture # @@ -118,6 +129,7 @@ PACKAGE_CLASSES ?= "package_rpm" # (useful if you want to develop against libs in the image) # "tools-sdk" - add development tools (gcc, make, pkgconfig etc.) # "tools-debug" - add debugging tools (gdb, strace) +# "eclipse-debug" - add Eclipse remote debugging support # "tools-profile" - add profiling tools (oprofile, exmap, lttng, valgrind) # "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.) # "debug-tweaks" - make an image suitable for development @@ -179,7 +191,6 @@ USER_CLASSES ?= "buildstats image-mklibs image-prelink" # Note: currently, Konsole support only works for KDE 3.x due to the way # newer Konsole versions behave #OE_TERMINAL = "auto" -OE_TERMINAL = "screen" # By default disable interactive patch resolution (tasks will just fail instead): PATCHRESOLVE = "noop" @@ -214,27 +225,10 @@ BB_DISKMON_DIRS = "\ # at the end as shown in the examples below. This will be substituted with the # correct path within the directory structure. #SSTATE_MIRRORS ?= "\ -#file://.* http://someserver.tld/share/sstate/PATH \n \ +#file://.* http://someserver.tld/share/sstate/PATH;downloadfilename=PATH \n \ #file://.* file:///some/local/dir/sstate/PATH" # CONF_VERSION is increased each time build/conf/ changes incompatibly and is used to # track the version of this file when it was generated. This can safely be ignored if # this doesn't mean anything to you. CONF_VERSION = "1" - -TERMCMD = "${SCREEN_TERMCMD}" -TERMCMDRUN = "${SCREEN_TERMCMDRUN}" - -# Some common terminal programs to choose from -# for GNOME -TERMCMD='gnome-terminal --disable-factory -t "$TERMWINDOWTITLE"' -TERMCMDRUN='${GNOME_TERMCMD} -x $SHELLCMDS' -# for screen -TERMCMD='screen -D -m -t "$TERMWINDOWTITLE"' -TERMCMDRUN='${SCREEN_TERMCMD} $SHELLCMDS' -# for xterm -TERMCMD='xterm -T "$TERMWINDOWTITLE"' -TERMCMDRUN='${XTERM_TERMCMD} -e $SHELLCMDS' -# for KONSOLE -TERMCMD='konsole -T "$TERMWINDOWTITLE"' -TERMCMDRUN='${KONSOLE_TERMCMD} -e $SHELLCMDS' -- 2.7.4