From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from vms173017pub.verizon.net (vms173017pub.verizon.net [206.46.173.17]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 9F451E00BC2 for ; Fri, 28 Mar 2014 09:26:51 -0700 (PDT) Received: from gandalf.denix.org ([unknown] [71.191.205.189]) by vms173017.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0N3500CHEMZTH790@vms173017.mailsrvcs.net> for poky@yoctoproject.org; Fri, 28 Mar 2014 11:26:28 -0500 (CDT) Received: by gandalf.denix.org (Postfix, from userid 1000) id A2F3120357; Fri, 28 Mar 2014 12:26:14 -0400 (EDT) Date: Fri, 28 Mar 2014 12:26:14 -0400 From: Denys Dmytriyenko To: Bruce Ashfield Message-id: <20140328162614.GF3370@denix.org> References: <1395861670-20330-1-git-send-email-denis@denix.org> <53332E97.7010002@windriver.com> MIME-version: 1.0 In-reply-to: <53332E97.7010002@windriver.com> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: poky@yoctoproject.org, Denys Dmytriyenko Subject: Re: [PATCH] beaglebone: add OE machine definition for use with linux-yocto kernels X-BeenThere: poky@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Poky build system developer discussion & patch submission for meta-yocto List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Mar 2014 16:26:54 -0000 Content-type: text/plain; charset=us-ascii Content-disposition: inline On Wed, Mar 26, 2014 at 03:46:31PM -0400, Bruce Ashfield wrote: > On 14-03-26 03:21 PM, Denys Dmytriyenko wrote: > >From: Denys Dmytriyenko > > > >Kernel support is now in linux-yocto-dev and will be moved to a versioned > >recipe once 3.14 is released. > > I've tested this locally as we prep 3.14, so I can ack and add > my tested-by: Ping? > Cheers, > > Bruce > > > > >Signed-off-by: Denys Dmytriyenko > >Cc: Bruce Ashfield > >--- > > meta-yocto-bsp/conf/machine/beaglebone.conf | 37 ++++++++++++++++++++++ > > .../recipes-kernel/linux/linux-yocto-dev.bbappend | 3 ++ > > 2 files changed, 40 insertions(+) > > create mode 100644 meta-yocto-bsp/conf/machine/beaglebone.conf > > create mode 100644 meta-yocto-bsp/recipes-kernel/linux/linux-yocto-dev.bbappend > > > >diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf > >new file mode 100644 > >index 0000000..0765b33 > >--- /dev/null > >+++ b/meta-yocto-bsp/conf/machine/beaglebone.conf > >@@ -0,0 +1,37 @@ > >+#@TYPE: Machine > >+#@NAME: Beaglebone machine > >+#@DESCRIPTION: Machine configuration for http://beagleboard.org/bone and http://beagleboard.org/black boards > >+ > >+PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg" > >+XSERVER ?= "xserver-xorg \ > >+ xf86-input-evdev \ > >+ xf86-input-mouse \ > >+ xf86-video-omapfb \ > >+ xf86-input-keyboard" > >+ > >+# Ship all kernel modules by default > >+MACHINE_EXTRA_RRECOMMENDS = " kernel-modules" > >+ > >+EXTRA_IMAGEDEPENDS += "u-boot" > >+ > >+DEFAULTTUNE ?= "cortexa8hf-neon" > >+include conf/machine/include/tune-cortexa8.inc > >+ > >+IMAGE_FSTYPES += "tar.bz2 jffs2" > >+EXTRA_IMAGECMD_jffs2 = "-lnp " > >+ > >+SERIAL_CONSOLE = "115200 ttyO2" > >+ > >+PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto-dev" > >+PREFERRED_VERSION_linux-yocto-dev ?= "3.14%" > >+ > >+KERNEL_IMAGETYPE = "zImage" > >+KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb" > >+ > >+SPL_BINARY = "MLO" > >+UBOOT_SUFFIX = "img" > >+UBOOT_MACHINE = "am335_evm_config" > >+UBOOT_ENTRYPOINT = "0x80008000" > >+UBOOT_LOADADDRESS = "0x80008000" > >+ > >+MACHINE_FEATURES = "usbgadget usbhost vfat alsa" > >diff --git a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto-dev.bbappend b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto-dev.bbappend > >new file mode 100644 > >index 0000000..6cb7e55 > >--- /dev/null > >+++ b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto-dev.bbappend > >@@ -0,0 +1,3 @@ > >+KBRANCH_beaglebone = "standard/beaglebone" > >+ > >+COMPATIBLE_MACHINE_beaglebone = "beaglebone" > > >