Skip to content

Instantly share code, notes, and snippets.

@ds-hwang
Created March 2, 2015 08:14
Show Gist options
  • Save ds-hwang/8d6173b3ed43dff734e4 to your computer and use it in GitHub Desktop.
Save ds-hwang/8d6173b3ed43dff734e4 to your computer and use it in GitHub Desktop.
my yocto conf for chromium
diff --git a/bblayers.conf b/bblayers.conf
index 4513d30..1ef46c7 100644
--- a/bblayers.conf
+++ b/bblayers.conf
@@ -9,6 +9,9 @@ BBLAYERS ?= " \
/d/workspace/yocto/poky/meta \
/d/workspace/yocto/poky/meta-yocto \
/d/workspace/yocto/poky/meta-yocto-bsp \
+ /d/workspace/yocto/meta-browser \
+ /d/workspace/yocto/meta-openembedded/meta-oe \
+ /d/workspace/yocto/meta-openembedded/meta-filesystems \
"
BBLAYERS_NON_REMOVABLE ?= " \
/d/workspace/yocto/poky/meta \
diff --git a/local.conf b/local.conf
index a1d99f9..890c167 100644
--- a/local.conf
+++ b/local.conf
@@ -29,12 +29,12 @@
#
#MACHINE ?= "beaglebone"
#MACHINE ?= "genericx86"
-#MACHINE ?= "genericx86-64"
+MACHINE ?= "genericx86-64"
#MACHINE ?= "mpc8315e-rdb"
#MACHINE ?= "edgerouter"
#
# This sets the default machine to be qemux86 if no other machine is selected:
-MACHINE ??= "qemux86"
+#MACHINE ??= "qemux86"
#
# Where to place downloads
@@ -137,7 +137,7 @@ PACKAGE_CLASSES ?= "package_rpm"
# There are other application targets that can be used here too, see
# meta/classes/image.bbclass and meta/classes/core-image.bbclass for more details.
# We default to enabling the debugging tweaks.
-EXTRA_IMAGE_FEATURES = "debug-tweaks"
+EXTRA_IMAGE_FEATURES = "debug-tweaks ssh-server-dropbear"
#
# Additional image features
@@ -230,3 +230,15 @@ ASSUME_PROVIDED += "libsdl-native"
# 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"
+
+PARALLEL_MAKE = "-j 80"
+ICECC_PATH = "/usr/bin/icecc"
+INHERIT += "icecc"
+
+LICENSE_FLAGS_WHITELIST = "commercial"
+PREFERRED_VERSION_chromium = "local"
+CHROMIUM_LOCAL_PATH = "/home/dshwang/chromium/src"
+CHROMIUM_OUT_DIR = "out_yocto"
+PACKAGECONFIG_append_pn-chromium = " component-build"
+IMAGE_INSTALL_append = " chromium sshfs-fuse bash"
+PREFERRED_VERSION_linux-yocto = "3.17%"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment