aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-09-18Revert "linux-imx (2.6.35.3): mx5: Fix IPU hang when framebuffer is enabled ↵Otavio Salvador
in U-boot" This reverts commit e7f3146191b4a5c4e160ae1b585ec4fd8f99e6b0.
2012-09-18Merge pull request #12 from agherzan/distro-machineOtavio Salvador
Move fsl-default*.inc from distro to machine
2012-09-18Move fsl-default*.inc from distro to machineAndrei Gherzan
It makes no sense to have distro related configurations in a BSP layer. So let's have these common parts (provides, version etc) in machine directory instead. Signed-off-by: Andrei Gherzan <andrei.gherzan@windriver.com>
2012-09-17imx6qsabrelite: Use xserver-xorg instead of xserver-xorg-liteOtavio Salvador
Next Yocto release will drop xserver-xorg-lite as building xserver-xorg and not installing the DRI and GLX modules (and so not Mesa) results in an increase of 16kb only. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-09-17cogl: Use OpenGL ES2 for mx5 SoCsOtavio Salvador
The amd-gpu-x11-bin-mx51 do not provide a full OpenGL stack but a OpenGL ES2. This fixes a build failure for mx5 SoCs. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-09-17imx-base.inc: Set preferred implementation of virtual/libgl for mx5 SoCsOtavio Salvador
The mx5 SoCs need to use amd-gpu-x11-bin-mx51 to proper support acceleration however it wasn't being taken in place in machine configuration. This adds the need settings and fix the issue for all mx5 based machines. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-09-17amd-gpu-x11-bin-mx51: Add provides to 'virtual/libgl'Otavio Salvador
The package provides the headers and libraries specific for mx5 SoCs to use OpenGL ES2 and OpenVG however packages were not depending on it. This includes the need provides field on the recipe to address the issue. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-09-17imx6qsabrelite: force MACHINE_GSTREAMER_PLUGIN until codecs are availableEric Bénard
else we get : ERROR: fsl-mm-codeclib was skipped: incompatible with machine imx6qsabrelite (not in COMPATIBLE_MACHINE) NOTE: Runtime target 'gst-fsl-plugin' is unbuildable, removing... Missing or unbuildable dependency chain was: ['gst-fsl-plugin', 'fsl-mm-codeclib'] NOTE: Runtime target 'task-fsl-gstreamer' is unbuildable, removing... Missing or unbuildable dependency chain was: ['task-fsl-gstreamer', 'gst-fsl-plugin', 'fsl-mm-codeclib'] ERROR: Required build target 'fsl-image-test' has no buildable providers. Missing or unbuildable dependency chain was: ['fsl-image-test', 'task-fsl-gstreamer', 'gst-fsl-plugin', 'fsl-mm-codeclib'] Signed-off-by: Eric Bénard <eric@eukrea.com>
2012-09-13linux-imx (2.6.35.3): Update to newer GIT versionsOtavio Salvador
This remove 8 patches that were merged (or had equivalent fix implemented) on Freescale kernel. The kernel has been updated to mxs and mx5 SoCs. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Rogerio Pimentel <rogerio.pimentel@freescale.com>
2012-09-13mxs-base.inc: Use xserver-xorg instead of xserver-xorg-liteOtavio Salvador
Next Yocto release will drop xserver-xorg-lite as building xserver-xorg and not installing the DRI and GLX modules (and so not Mesa) results in an increase of 16kb only. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Rogerio Pimentel <rogerio.pimentel@freescale.com>
2012-09-13imx-base.inc: Use xserver-xorg instead of xserver-xorg-liteOtavio Salvador
Next Yocto release will drop xserver-xorg-lite as building xserver-xorg and not installing the DRI and GLX modules (and so not Mesa) results in an increase of 16kb only. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Rogerio Pimentel <rogerio.pimentel@freescale.com>
2012-09-13fsl-default-providers.inc: Change virtual/xserver to xserver-xorgOtavio Salvador
Next Yocto release will drop xserver-xorg-lite as building xserver-xorg and not installing the DRI and GLX modules (and so not Mesa) results in an increase of 16kb only. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Rogerio Pimentel <rogerio.pimentel@freescale.com>
2012-09-13imx-base.inc: Remove useless SoC override for U-Boot settingsOtavio Salvador
The U-Boot settings are the same for mx5 and mx6 SoCs so we don't need a override for it. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Rogerio Pimentel <rogerio.pimentel@freescale.com>
2012-09-13u-boot: Fix mx28evk bootargsOtavio Salvador
Without this patch console=${console_mainline} is never evaluated and we get console=${console_mainline} in the bootargs which leads to no kernel boot log on the serial console. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Rogerio Pimentel <rogerio.pimentel@freescale.com>
2012-09-13xserver-xf86-config: add xorg.conf for mxsEric Bénard
so that X gets a chance to run on the default framebuffer device. Tested on mx28evk with fsl-image-gui. Signed-off-by: Eric Bénard <eric@eukrea.com>
2012-09-11linux-imx (2.6.35.3): perf tools: Do not treat warnings as errorsOtavio Salvador
Newer GCC detect more warnings and this makes building of perf not possible in the upcoming release of Yocto (1.3). We deal with that making the warnings not fatal instead of changing perf code. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-09-11linux-imx (2.6.35.3): perf tools: Fix build against newer glibcOtavio Salvador
Upstream glibc commit 295e904 added a definition for __attribute_const__ to cdefs.h. This causes the following error when building perf: util/include/linux/compiler.h:8:0: error: "__attribute_const__" redefined [-Werror] /usr/include/sys/cdefs.h:226:0: note: this is the location of the previous definition Wrap __attribute_const__ in #ifndef as done for __always_inline. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-09-09linux-imx (2.6.35.3): mx5: Fix IPU hang when framebuffer is enabled in U-bootOtavio Salvador
If bootloader enableds framebuffer, it is necessary to turn off IPU early in the boot process to avoid kernel hang. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-09-09linux-imx (2.6.35.3): readd workaround for iMX28 problem with cpufreqOtavio Salvador
When cleaning the kernel recipes, the patch to disable cpufreq. This patch readd the the missing workaround back to fix the hanging issue during the boot. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-09-06qt4-embedded: enable OpenGL ES2 and OpenVG for mx5 SoCsOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Rogerio Pimentel <rogerio.pimentel@freescale.com>
2012-09-06qt4-x11-free: enable OpenGL ES2 and OpenVG for mx5 SoCsOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Rogerio Pimentel <rogerio.pimentel@freescale.com>
2012-09-06amd-gpu-x11-bin-mx51: Proper detect the building on LinuxOtavio Salvador
GCC defines __linux__ when running on Linux but the headers where checking by _LINUX define hence enforcing explicit definition by build system; we patch the headers to check for __linux__ and then ensure it "Just Work (TM)". Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Rogerio Pimentel <rogerio.pimentel@freescale.com>
2012-09-06amd-gpu-x11-bin-mx51: Set compatibility as mx5 SoC family onlyOtavio Salvador
This binaries are compatible with mx5 SoC family only so those ought to not be available on armv7 feed but on the board specific one. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Rogerio Pimentel <rogerio.pimentel@freescale.com>
2012-09-05linux-imx (2.6.35.3): Kernel patches from Freescale GITMahesh Mahadevan
The Freescale external GIT repository has been updated, below are the links: http://git.freescale.com/git/cgit.cgi/imx/linux-2.6-imx.git/log/?h=imx_2.6.35_11.09.01 http://git.freescale.com/git/cgit.cgi/imx/linux-2.6-imx.git/log/?h=imx_2.6.35_10.12.01 Delete the patches locally applied as they are available on the GIT server. Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@freescale.com>
2012-08-17linux-libc-headers-imx (2.6.38): drop as no BSP uses itOtavio Salvador
The 2.6.38 kernel has been used for the initial i.MX6Q support but now it is replaced by 3.0.15 with much nicer kernel support thus this version has no reason to be kept on the repository anymore. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Rogerio Pimentel <rogerio.pimentel@freescale.com>
2012-08-17linux-imx (2.6.38): drop as no BSP uses itOtavio Salvador
The 2.6.38 kernel has been used for the initial i.MX6Q support but now it is replaced by 3.0.15 with much nicer kernel support thus this version has no reason to be kept on the repository anymore. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Fabio Estevam <fabio.estevam@freescale.com>
2012-08-15linux-imx (2.6.35.3): reduce delta against kernel source imx23evk_defconfigOtavio Salvador
Update the imx23evk defconfig to reduce the delta against the imx23evk_defconfig so it is more in line of expected feature set by Freescale. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-08-15linux-imx (2.6.35.3): use 10.12.01 based kernel for mxs SoC familyOtavio Salvador
Freescale maintains specific patches for their SoC families on respective branches so we now have specific SRCREV for each family. For mxs we're using the 10.12.01 branch while for mx5 we keep using 11.09.01 one and we ended keeping the specific patches of each SoC applying only on the right family. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-08-15linux-imx (3.0.15): update to use linux-imxOtavio Salvador
This simplify the recipe a lot and avoid code duplication among kernel recipes. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-08-15linux-imx (2.6.35.3): update to use linux-imx.incOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-08-15linux-imx.inc: add to avoid duplicating code among linux-imx' recipesOtavio Salvador
The linux-imx.inc hosts the common code of linux-imx recipes making it easy to maintain and work. To easily identify that the kernel running is built from Yocto and give an indication of versioning, until we have a proper GIT revision to point to, we use a local version with '+yocto-<date>' for it. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-08-06image_types_fsl.bbclass: Calculate BOOT_BLOCKS for new boot partition numJeremy Stashluk
The empty 1K at the beginning of the disk is no longer a partition, so the numbers reported by parted have shifted by one. Signed-off-by: Jeremy Stashluk <jstashluk@dekaresearch.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-08-05linux-imx (2.6.35.3): Kernel patches from Freescale GITMahesh Mahadevan
The Freescale external GIT repository has been updated, below is the link: http://git.freescale.com/git/cgit.cgi/imx/linux-2.6-imx.git/log/?h=imx_2.6.35_11.09.01 Delete the patches locally applied as they are available on the GIT server. Tested video playback of an .mp4 file using the QT player and did not see the black screen issue mentioned with the VPU. Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@freescale.com>
2012-08-02linux-imx (2.6.35.3): reduce delta against kernel source mx5_defconfigMahesh Mahadevan
Update the imx53qsb defconfig to reduce the delta against the mx5_defconfig so it is more in line of expected feature set by Freescale. Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@freescale.com>
2012-07-26imx-firmware: Install the atheros wifi firmwareMahesh Mahadevan
Install the firmware needed for the atheros wifi. Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-07-25imx6qsabrelite: do not recommends BSP package are they are not public yetOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Daiane Angolini <daiane.angolini@freescale.com>
2012-07-25alsa-state: custom asound.conf file for iMX targetsDaiane Angolini
asound.conf file for iMX5 family is from FSL BSP 2.6.35_11.09.01_ER asound.conf file for MXS family is from FSL BSP L2.6.35_10.12.01_SDK Signed-off-by: Daiane Angolini <daiane.angolini@freescale.com>
2012-07-20xserver-xf86-config (mx6): refactor default configurationOtavio Salvador
We refactor the default configuration to the same defaults used in mx5 machines. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Daiane Angolini <daiane.angolini@freescale.com>
2012-07-20xserver-xf86-config (mx5): disable DPMS functions by defaultOtavio Salvador
By default, the device shouldn't turn the display off so we change the server setting but allow for easy customization by user, if need. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Daiane Angolini <daiane.angolini@freescale.com>
2012-07-19gst-fsl-plugin: refactor packaging to use .inc file properlyOtavio Salvador
The .inc file was not being used by complete and had most code on the versioned .bb one. This patch refactor it so newer versions are easy to add. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Daiane Angolini <daiane.angolini@freescale.com>
2012-07-19gst-fsl-plugin: bump PROtavio Salvador
imx-lib has change library packaging to respect the soname but all packages linking to it need to be rebuild. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Daiane Angolini <daiane.angolini@freescale.com>
2012-07-18linux-imx (2.6.35.3): enable SPDIF support for imx53qsbOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Adrian Alonso <aalonso00@gmail.com>
2012-07-18imx-test: depends on imx-lib so vpu testing application is buildOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Adrian Alonso <aalonso00@gmail.com>
2012-07-18imx-lib: fix packaging of librariesOtavio Salvador
The package was mistakenly removing the links of libraries making runtime applications to fail to run. The patch that caused it has been removed and package files adjusted. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Adrian Alonso <aalonso00@gmail.com>
2012-07-18linux-imx (2.6.35.3): enable support for NFS v4Otavio Salvador
To easy use with newer host versions, that defaults to NFS v4, we enabled the support for it on the development boards. It has been applied to: - imx23evk - imx28evk - imx51evk - imx53ard - imx53qsb Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Adrian Alonso <aalonso00@gmail.com>
2012-07-18linux-imx (2.6.35.3): fix sysroot populate with backward compatibilityOtavio Salvador
The way kernel.bbclass works has change since denzil release and we need to cope with both ways. This supports old /kernel deployment and new /usr/src/kernel one. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-07-17linux-imx (2.6.35.3): fix copy of native binaries onto sysrootOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-07-17u-boot: change mx53loco default environmentOtavio Salvador
As we changed the partition layout used in sdcard, for i.MX based SoCs the mx53loco needs to be adjusted according. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-07-17image_types_fsl.bbclass: do not create a partition from 0 to 1MB in i.MX sdcardOtavio Salvador
The bootrom boots from a fixed 1K offset so we don't need a partition there and having one makes udev or kernel to probe for it and output error messages in bootlog: ,----[ boot error messages ] | ... | EXT4-fs (mmcblk0p1): VFS: Can't find ext4 filesystem | EXT3-fs (mmcblk0p1): error: can't find ext3 filesystem on dev mmcblk0p1. | EXT2-fs (mmcblk0p1): error: can't find an ext2 filesystem on dev mmcblk0p1. | FAT: bogus number of reserved sectors | VFS: Can't find a valid FAT filesystem on dev mmcblk0p1. | cramfs: wrong magic | FAT: bogus number of reserved sectors | VFS: Can't find a valid FAT filesystem on dev mmcblk0p1. | ... `---- Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-07-17imx-test: set PACKAGE_ARCH as the package is machine dependantOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>