aboutsummaryrefslogtreecommitdiffstats
path: root/meta-rcar-gen2
AgeCommit message (Collapse)Author
2016-11-25Update maintainers informationHEADmasterTakeshi Saito
Maintainer changed from Takeshi Saito to Takamitsu Hondao from Apr, 2015: Takeshi Saito <takeshi.saito.xv@renesas.com> from Dec, 2016: Takamitsu Honda <takamitsu.honda.pv@renesas.com> Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-11-24rcar-gen2: gcc : fix build error in SDKTakeshi Saito
This patch fixes build error in SDK. The following error occurs in nativesdk-glibc-initial. | configure: error: cannot compute suffix of object files: cannot compile | See `config.log' for more details | WARNING: exit code 1 from a shell command. | ERROR: Function failed: do_configure gcc recipes were updated by the following patch in poky master branch. Title : cf882b6e3abbbc437fc61be58f1265ae3fd4e1b2 Auther: Juro Bystricky <juro.bystricky@intel.com> Commit: SDK: Allow changing SDKMACHINE without wiping TMP folder Our recipes are using old version of gcc (4.9.3). The old version of gcc recipes were deleted in poky. And there were copied to meta-rensas from poky. Because cf882b6e was not applied to gcc4.9.3 recipes, build error occured. Therefore, we backported this patch (cf882b6e) to gcc4.9.3 recipes. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-11-22rcar-gen2: file: fix build error in SDKTakeshi Saito
In SDK build, Build error occurs in nativesdk-file. | ../../git/src/readelf.c: In function 'do_auxv_note': | ../../git/src/readelf.c:919:2: error: 'for' loop initial declarations are only allowed in C99 or C11 mode | for (size_t off = 0; off + elsize <= descsz; off += elsize) { | ^ | ../../git/src/readelf.c:919:2: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code We added -std=gnu option to CFLAGS by bbappend. But it was necessary also for BUILDSDK_CFLAGS. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-11-22rcar-gen2: conf: fix build error by gcc version mismatchTakeshi Saito
This patch fixes build error by gcc version mismatch. - Add SDKGCCVERSION="4.9.3" - Add LINUXLIBCVERSION="3.10%" The recipe defines GCCVERSION="4.9%". Because, kernel v3.10 does not support GCC 5.x or higher. But, gcc 6.2.0 is chosen in only SDK. SDKGCCVERSION = GCCVERSION = "4.9%" However, "%" cannot work in SDK. So, we add SDKGCCVERSION="4.9.3". Note) GCCVERSION="4.9.3" cannot be define because it becomes an error. Some recipe requires "4.9" (4.9.3 is error). Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-10-31rcar-gen2: gtk+3: fix build error by remove SGML stackTakeshi Saito
docbook-utils recipe was removed from poky by the following. Title : Remove the SGML stack Auther: Alexander Kanavin <alexander.kanavin@linux.intel.com> Commit: 671780de49f93ec1cc28f5ad2a7eebe211918b85 docbook-utils recipes was removed by <671780de>. Therefore, The following build error occurs. NOTE: Runtime target 'alsa-tools' is unbuildable, removing... Missing or unbuildable dependency chain was: ['alsa-tools', 'gtk+3', 'docbook-utils-native'] gtk+3 recipe requires the following patch. This patch backport it. Title : gtk+3: remove SGML stack dependency Auther: Alexander Kanavin <alexander.kanavin@linux.intel.com> Commit: 8bf4f5fb4692eb1ab90e59d722b152b3c458fc73 Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-10-24rcar-gen2: linux-libc-headers: Update BSP to version 1.9.9Takeshi Saito
Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-10-24rcar-gen2: linux-renesas: Update BSP to version 1.9.9Takeshi Saito
BSP maintenance update for R-Car Gen2. - Bug fixes - Kernel - Add missing const for of_parse_phandle_with_args() in !CONFIG_OF - Audio - Enable cache usage to fix crashes on resume with ak4642 - Open 31bit of SSICKR mask - Remove redundant condition for WS - Fix DVC volume processing control - Fix register setting sequence of Audio modules - Add read/write access error retry with ak4642 for ALT board - DMAE - Fix dma transfer does not continue in chan_irqt - Add control for USB-DMAC when a zero length packet is received - Display - Add spinlock in screen shot - Add wait state transition - Fix PLL frequency-related configuration - Fix lvds start procedure - Ethernet - Don't return NULL from mdiobus_scan() - Don't return NULL from get_phy_device() - Fix NULL pointer dereference in sh_eth_ring_format() - I2C - Fix busy check - Add initialize in operation end - SD/MMC - Add the wait for DMA transfer end callback - Add the condition of clock retuning - Add the offset before TAP tuning - Fix the allocation memory size for TAP turning - Error message on ENOMEM is superfluous - Remove debug messages of tmio_dma with little information - USB Function - Fix NULL pointer dereference in xfer_work() - Protect the CFIFOSEL setting in usbhsg_ep_enable() - Use dmac only if the pipe type is bulk - Fix clearing the {BRDY,BEMP}STS condition - Fix NULL packet received sequence - Revert "usb: renesas_usbhs: pipe: Modify buff_size" - Modify pipe configuration - Clear the BRDYSTS in usbhsg_ep_enable() Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-09-23rcar-gen2: linux-renesas: fix build error by do_kernel_version_sanity_checkTakeshi Saito
New function of kernel_version_sanity_check was added by update of poky. Build error occurs by this function. Title : kernel.bbclass: Add kernel_version_sanity_check function Author: California Sullivan <california.l.sullivan@intel.com> Commit: 0eacf03de18b7eeb3460a4d102dd5932cd73cd06 This function checks version information in Makefile. Expected Value of PV = ${VERSION}.${PATCHLEVEL}.${SUBLEVEL}${EXTRAVERSION} = 3.10.31-ltsi The current filename is not matched. Therefore, filename was changed. linux-renesas_3.10.bb -> linux-renesas_3.10.31-ltsi Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-09-20rcar-gen2: vspm-kernel-module: fix build error by QA IssueTakeshi Saito
build error occurs by QA Issue. ERROR: vspm-kernel-module-1.0-r0 do_populate_lic: QA Issue: vspm-kernel-module: The LIC_FILES_CHKSUM does not match Verification of the checksum was skipped by do_configure[noexec]. We have forgotten to update the value of checksum. This patch updates LIC_FILES_CHKSUM. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-09-20rcar-gen2: fdpm-kernel-module: fix build error by QA IssueTakeshi Saito
build error occurs by QA Issue. ERROR: fdpm-kernel-module-1.0-r0 do_populate_lic: QA Issue: fdpm-kernel-module: The LIC_FILES_CHKSUM does not match Verification of the checksum was skipped by do_configure[noexec]. We have forgotten to update the value of checksum. This patch updates LIC_FILES_CHKSUM. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-09-16rcar-gen2: linux-libc-headers: Update BSP to version 1.9.8Takeshi Saito
Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-09-16rcar-gen2: linux-renesas: Update BSP to version 1.9.8Takeshi Saito
BSP maintenance update for R-Car Gen2. - Bug fixes - Kernel - Remove reading of SRSTCLRn (write only register) - clk: shmobile: rcar-gen2: Describe PLL0 multiplication ratio - clk: shmobile: rcar-gen2: Correct PLL clocks for E2 - arm: dts: r8a7794: Correct parent clock of Z2 clk - pinctrl: sh-pfc: IPSRx and MOD_SELx should be set before GPSRx - Audio - ASoC: rsnd: use rsnd_src_convert_rate() once on rsnd_src_set_convert_rate_gen2() - ASoC: rsnd: add rsnd_io_to_rdai() - ASoC: rsnd: replace rsnd_dai_is_play() to rsnd_io_is_play() - ASoC: rsnd: add rsnd_src_get_in/out_rate() - ASoC: rsnd: add rsnd_mod_get() macro and use it - ASoC: rsnd: SRC TIMSEL support for Capture - ASoC: rsnd: CMD TIMSEL support for Capture - ASoC: rsnd: Fix SRC rate conversion command - ASoC: rsnd: Add care of initialize DVC - DU - drm: rcar-du: Add rcar header file in export list - drm: rcar-du: Fix display timing controller parameter - MSIOF - spi: sh-msiof: Fix Master/Slave DMA transfer completion timeout - spi: sh-msiof: Fix calculation of the division value - SCIF - serial: sh-sci: Fix ORER bit clear problem of SCIFA/B - USBHS - usb: renesas_usbhs: avoid NULL pointer derefernce in usbhsf_pkt_handler() - usb: renesas_usbhs: disable TX IRQ before starting TX DMAC transfer - VIN - media: soc_camera: rcar_vin: Fix define macro of RGB888 pixel format - media: soc_camera: rcar_vin: Fix video capture interrupt procedure - media: soc_camera: rcar_vin: Add check when buffer done Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-09-09rcar-gen2: gnutls: downgrade 3.5.3 -> 3.5.1Takeshi Saito
In poky, gnutls update to 3.5.3 Title : gnutls: update to 3.5.3 Auther: Jussi Kukkonen <jussi.kukkonen@intel.com> Commit: 3e53ab2ed16f8c1aa49cb65c7dc74433970d33db Build error occurs in gnutls 3.5.3 | ../../../gnutls-3.5.3/lib/nettle/rnd-linux.c: In function 'have_getrandom': | ../../../gnutls-3.5.3/lib/nettle/rnd-linux.c:59:42: error: 'SYS_getrandom' und eclared (first use in this function) | # define getrandom(dst,s,flags) syscall(SYS_getrandom, (void*)dst, (size_t)s , (unsigned int)flags) Renesas Linux BSP is kernel 3.10. SYS_getrandom does not support in this kernel. Therefore, gnutls 3.5.3 cannot be used. Old gnutls(3.5.1) recipes were deleted in poky. We copied gnutls 3.5.1 recipes from poky. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-09-07rcar-gen2: libnl: fix build error by redefinitionTakeshi Saito
In libnl 3.2.28, Build error occurs. | In file included from ../../libnl-3.2.28/include/linux-private/linux/if_bridge .h:18:0, | from ../../libnl-3.2.28/lib/route/link/bridge.c:26: | /home/saito/yocto_upstream/master/build_auto/tmp/sysroots/koelsch/usr/include/ linux/in6.h:30:8: error: redefinition of 'struct in6_addr' | struct in6_addr { | ^ This patch is workaround for redefinition error. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-07-20rcar-gen2: file: fix build error by for loop initial declarationsTakeshi Saito
file was upgrade to 5.28 in the following. Title : file: 5.27 -> 5.28 Author: Robert Yang <liezhi.yang@windriver.com> commit: e5f9326f26f3ebd77dab8b396cf956cf5ef8077f In GCC4.9, The following errors occur. This error was solved by adding -std=gnu99 option to CFLAGS. | ../../git/src/readelf.c: In function 'do_auxv_note': | ../../git/src/readelf.c:919:2: error: 'for' loop initial declarations are only allowed in C99 or C11 mode | for (size_t off = 0; off + elsize <= descsz; off += elsize) { | ^ | ../../git/src/readelf.c:919:2: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-07-12rcar-gen2: gcc: add GCC4.9Takeshi Saito
GCC4.9 was removed by the following. Title : gcc: remove GCC 4.9 Author: Ross Burton <ross.burton@intel.com> Commit: 6074ed6cd46e5167903e835508d4d6062bf04501 Renesas Linux BSP is kernel 3.10. This kernel dose not support GCC 5.x, 6.x. This patch copy GCC 4.9 recipes from Poky. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-06-28rcar-gen2: packagegroup: removes libmad in lcbTakeshi Saito
libmad was removed by the following. Title : libmad: remove recipe Author: Alexander Kanavin <alexander.kanavin@linux.intel.com> Commit: d8afd0c9f2fc302aa6c3e88e452806d51b23e3cd This patch removes libmad. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-06-27rcar-gen2: gstreamer1.0-omx: fix build error by autotoolsTakeshi Saito
do_compile was changed into autotools from base.class by the following. Title : autotools: ensure Makefile exists in do_compile Author: Ross Burton <ross.burton@intel.com> Commit: e04da4b9541f229ad19d31178a5b171acb48a082 do_compile directory is ${B} in autotools. Therefore, cd ${S} is necessary. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-06-27rcar-gen2: gstreamer1.0-plugins-ugly: disable madTakeshi Saito
libmad was removed by the following. Title : libmad: remove recipe Author: Alexander Kanavin <alexander.kanavin@linux.intel.com> Commit: d8afd0c9f2fc302aa6c3e88e452806d51b23e3cd mp3 decoder was changed into mpg123 from mad. However, gstreamer1.0-plugins-ugly does not support mpg123. This patch disable mad. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-06-23rcar-gen2: gtk+3: enable gobject-introspection for vte-0.44.1Takeshi Saito
vte-0.44.1 requires Gdk-3.0.gir provided by gtk+3 gobject-introspection. This patch was created based on the following in Poky. Title : gtk+3: enable gobject-introspection Auther: Alexander Kanavin <alexander.kanavin@linux.intel.com> Commit: 0ec412b09dc8b1bd3a003e11c7077e1d59194882 The above patch occurs build error by QA Issues. This patch fixes this error. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-06-23rcar-gen2: gtk-icon-utils-native: add 3.18.6 recipeTakeshi Saito
The recipes of gtk-icon-utils-native was also added because gtk+3 was updated to 3.18.6 And deleted gtk-update-icon-cache-native. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-06-23rcar-gen2: gtk+3: upgrade to 3.18.6Takeshi Saito
gtk+3 upgrade to 3.18.6 from 3.12.2 wayland 1.5.0 not support 3.18.6. Our recipe was fixed to 3.12.2. Now, wayland is using the latest version. So, gtk+3 can be updated to latest version in Poky. However, gtk+3 3.18.8 requires linux/memfd.h. It was added by kernel 3.17. Because our BSP kernel is 3.10, it is not supporting. gtk+-3.18.8/gdk/wayland/gdkdisplay-wayland.c:25:25: fatal error: linux/memfd.h: No such file or directory Therefore, the most latest version which can be used is 3.18.6 gtk+3 3.18.6 recipes are copied from Poky. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-06-01rcar-gen2: x11vnc: Fix build error by QA-IssueTakeshi Saito
Build error occurs in core-image-x11. ERROR: x11vnc-0.9.13-r0 do_package_qa: QA Issue: x11vnc: contains probably-redundant RPATH /usr/lib [useless-rpaths] This patch fixes this error. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-06-01rcar-gen2: linux-renesas: fix build error by adding KERNEL_IMAGETYPESTakeshi Saito
In Poky, KERNEL_IMAGE_TYPES added by the following. Title : Add KERNEL_IMAGETYPES to build multi types kernel at one time Auther: He Zhe <zhe.he@windriver.com> Commit: 0437a59e3c298d40aaa96af09b80bff8fcbe292d KERNEL_IMAGE_BASE_NAME was changed into the following by this patch. -KERNEL_IMAGE_BASE_NAME ?= "${KERNEL_IMAGETYPE}-${PKGE}-${PKGV}-${PKGR}-${MACHINE}-${DATETIME}" +KERNEL_IMAGE_BASE_NAME ?= "${PKGE}-${PKGV}-${PKGR}-${MACHINE}-${DATETIME}" Definition of variable wich uses KERNEL_IMAGE_BASE_NAME was modified. - ZIMAGE_AND_DTB_NAME - UIMAGE_AND_DTB_NAME - ZIMAGE_NAME (new) Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-05-25rcar-gen2: mesa: fix build error by Xwayland supportTakeshi Saito
In Poky, weston support Xwayland. weston: Add Xwayland initialization support using weston-start Commit: 7b779c8c2aa43c1a263962f395c2602211ed5159 Author: Otavio Salvador <otavio@ossystems.com.br> By this change, xorg-xserver is needed. And build error occurs in xorg-xserver. ld: cannot find -lGL libGL is provided by mesa. Our recipe has deleted X11 config for mesa in DISTRO_FEATURE wayland. So, libGL is not provided in DISTRO_FEATURES wayland. This patch keep X11 config in DISTRO_FEATURES wayland. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-04-20rcar-gen2: linux-renesas: allows carrying bootargs by bootloaderTakeshi Saito
When using uImage+dtb and zImage+dtb, bootargs was not able to carried by bootloader. This patch allows it by changing the kernel config. CONFIG_ARM_ATAG_DTB_COMPAT=y CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER=y Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-04-05rcar-gen2: linux-libc-headers: Update BSP to version 1.9.7Takeshi Saito
Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-04-05rcar-gen2: linux-renesas: Update BSP to version 1.9.7Takeshi Saito
BSP maintenance update for R-Car Gen2. Some bug fix is included. SD, Audio, Audio DMAC, SYS DMAC, VIN, USBHS, etc Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-03-28rcar-gen2: gstreamer1.0-plugins-bad: Update SRCREV for fix a memory leakTakeshi Saito
SRCREV was updated for fix a memory leak. - waylandsink: Fix a memory leak for a GstMemory object Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-03-28rcar-gen2: graphics: upgrade wayland/weston to 1.9.0Takeshi Saito
Poky: - weston : 1.9.0 (95fa36e9c3a701c947979b10c03e92bf1a0d78a8) - wayland: 1.9.0 (1bc0c89595f1914c6f9e73a183f3115d7d793017) This patch upgrade wayland/weston 1.5.0 -> 1.9.0 (same as poky). - libegl: update SRCREV - libgbm: update SRCREV - wayland-kms: upgrade 1.4.0 -> 1.6.0 - Drop wayland/weston 1.5.0 recipes - conf/machine: delete PREFERRED_VERSION for wayland/weston 1.5.0 Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-03-24rcar-gen2: gstreamer1.0: Fix build error by gobject introspectionTakeshi Saito
This patch disable gobject introspection Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-03-24rcar-gen2: udev: replace udev 182 to eudev 3.1.5Takeshi Saito
In YP2.1, udev was replaced by eudev. Commit: 3e5e540513665105b963262c2eaf33f197a0a36c Auther: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> Title : eudev: Replaces udev with eudev for compatibility when using sysvinit on new kernels This patch replaces udev to eudev. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-02-26rcar-gen2: gstreamer1.0-plugins-bad: Fix build error by QA IssueTakeshi Saito
The following errors occur. ERROR: gstreamer1.0-plugins-bad-1.2.3-r0 do_populate_sysroot: QA Issue: gstreame r-egl-1.0.pc failed sanity test (tmpdir) in path This patch deletes .pc files from sysroot. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-02-16rcar-gen2: weston: Fix build error by QA IssueTakeshi Saito
Because QA check was updated, The following errors occur. ERROR: QA Issue: weston: Files/directories were installed but not shipped in any package: This patch fixes this error. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-02-15rcar-gen2: omx-user-module: Fix build error by .la filesTakeshi Saito
The following errors occurs in latest Poky (master branch). ERROR: QA Issue: libomxr_XXXX.la failed sanity test (workdir) ... In latest Poky, new class "remove-libtool" was added. This patch uses remove-libtool class for delete .la files. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-02-15rcar-gen2: README: add meta-multimedia layer for build with x11/westonTakeshi Saito
liboil recipe have been removed from oe-core. In build with x11/weston, it is necessary to add meta-multimedia layer to bblayers.conf. Title : liboil: drop recipe from oe-core Commit: 322015a2ddc124276475e6fb985039e81b4886de Auther: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2016-01-14rcar-gen2: README: add meta-qt4 layer for build with x11/westonTakeshi Saito
Qt4 recipes and classes have been moved to meta-qt4. meta-openembedded/meta-oe layer requires qt4 recipes. In build with x11/weston, it is necessary to add meta-qt4 layer to bblayers.conf. Title : qt4: remove recipes and classes Commit: 8b11ed8a75a15328bbd22d100a976cc669b84b58 Auther: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2015-12-18rcar-gen2: linux-libc-headers: Update SRC_REVTakeshi Saito
Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2015-12-18rcar-gen2: linux-renesas: Update SRC_REVTakeshi Saito
BSP maintenance update for R-Car Gen2. - Bug fixes - SCIF - serial: sh-sci: Fix hung up after dma alloc error - I2C - i2c: rcar: Fix macro function usage - Audio - ASoC: rsnd: tidyup data align position for capture - ASoC: rsnd: Fix SRC overflow/underflow handling - ASoC: rsnd: Fix mistake of SRC route mode modify Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2015-12-14rcar-gen2: linux-libc-headers: Fix build error by remove '-e MAKEFLAGS='Takeshi Saito
In Poky, removes '-e MAKEFLAGS=' from EXTRA_OEMAKE. Title : linux-libc-headers.inc: remove '-e MAKEFLAGS=' from EXTRA_OEMAKE Commit: 94c033211e69cb3e888ea7ad3d13a4bb60e2980e Auther: Andre McCurdy <armccurdy@gmail.com> By this chenage, build error occurs in do_install(). Renesas BSP kernel(3.10.31-ltsi) requires '-e MAKEFLAGS='. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2015-12-09rcar-gen2: copyscript: supports various file structureTakeshi Saito
"R-Car Series Evaluation Software Package for Linux" is provided with various file structure. This patch supports the following various file structure. - zip file (tar.gz file is compressed by zip) <-- Default - zip file <-- new - tar file <-- new Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2015-12-09rcar-gen2: cogl-1.0: Fix build error by upgrade 1.20.0 -> 1.22.0Takeshi Saito
In Poky(YP2.1), cogl-1.0 upgrade from 1.20.0 to 1.22.0. cogl-1.0_1.20.0.bb was deleted. Therefore, build errors occur. Title : cogl-1.0: Upgrade 1.20.0 -> 1.22.0 commit: 148c95331d30c44a6a5b5559088cf88d46905bc2 Auther: Jussi Kukkonen <jussi.kukkonen@intel.com> bbappend file must change a file name (PV). cogl-1.0_1.20.0.bbappend -> cogl-1.0_1.%.bbappend Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2015-12-01rcar-gen2: sample: Add copyscript for Multimedia and Graphics libraryTakeshi Saito
This copyscript supports only "R-Car Series Evaluation Software Packages for Linux". This package works on R-Car H2/M2/E2 Application development board. Please refer to How_To_Use.txt. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2015-11-24rcar-gen2: u-boot: Update BSP to version 1.9.6Takeshi Saito
Add settings before reset command. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2015-11-24rcar-gen2: linux-libc-headers: Update BSP to version 1.9.6Takeshi Saito
Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2015-11-24rcar-gen2: linux-renesas: Update BSP to version 1.9.6Takeshi Saito
BSP maintenance update for R-Car Gen2. Some bug fix is included. Audio, SCIF, DRM, etc Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2015-11-18car-gen2: recipes-kernel: Fix warning of licenseTakeshi Saito
In do_rootfs, Warning of the license was outputted in some kernel modules. This fixes warning following: ----- WARNING: The license listed GPLv2MIT was not in the licenses collected for recipe <recipe name> ----- LICENSE variable, must be use spaces between license names. LICENSE = "GPL-2.0 & MIT" And, except for "CLOSED", do_populate_lic is necessary. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2015-11-18rcar-gen2: gstreamer1.0-omx: Fix build error in do_configure and do_installTakeshi Saito
The following errors occcur in do_configure. + Setting up common submodule fatal: Not a git repository (or any of the parent directories): .git fatal: Not a git repository (or any of the parent directories): .git common submodule is cloned by autogen.sh. However, it is necessary to perform autogen.sh by ${S}. And do_install is also the same. This patch fixes this error. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2015-09-07rcar-gen2: conf: gcc version is fixed to 4.9Takeshi Saito
In Poky(YP1.9), the version of gcc was set to 5.2 as the default. title : tcmode-default: Set gcc 5.2 as the default commit: 3d81a56912fb2c6ca1c5aafb93cbc6e2cfea20b3 Author: Richard Purdie <richard.purdie@linuxfoundation.org> Renesas BSP kernel(3.10.31-ltsi) is not supporting gcc-5.x. Therefore, the following errors occur. fatal error: linux/compiler-gcc5.h: No such file or directory This patch sets the version of gcc to 4.9. Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>
2015-09-03rcar-gen2: conf: gtk+3_3.16.6 --> 3.12.2Takeshi Saito
gtk+3_3.16.6 (YP1.9) does not support wayland 1.5.0. Recipe uses gtk+3_3.12.2 Signed-off-by: Takeshi Saito <takeshi.saito.xv@renesas.com>