summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* layer.conf: avoid unnecessary early expansion with :=1.4_M5Christopher Larson2013-03-261-2/+2
| | | | | | bitbake handles immediate expansions of LAYERDIR for us automatically. Signed-off-by: Christopher Larson <chris_larson@mentor.com>
* oprofile: remove useless patchesTing Liu2013-03-145-491/+0
| | | | | | | | | | There patches is useless since bb file had been removed in commit: commit 330e7d07a6c6881ea47038dc7c9d0a588d5218c8 Author: Matthew McClintock <msm@freescale.com> Date: Thu Jan 17 12:46:12 2013 -0600 oprofile: remove from meta-fsl-ppc and use oe-core Signed-off-by: Ting Liu <b28495@freescale.com>
* busybox: remove SDK specific bitsTing Liu2013-03-145-1499/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are three kinds of SDK specific bits: (1) deleted: busybox-1.20.2/busybox-1.19.4-ubi-user-h.patch This patch is just a workground to fix busybox 1.9 builds when enabling ubi applets (disabled by default in Yocto). The actual fix exists in kernel, but was not applied on fsl kernel git tree for SDK 1.3.x. This patch restored a compatible mtd/ubi-user.h into busybox. Now the kernel fix was already included in Yocto: http://git.yoctoproject.org/cgit/cgit.cgi/linux-yocto-3.2/commit/?id=f210735fe2f17a6225432ee3d1239bcf23a8659c http://git.yoctoproject.org/cgit/cgit.cgi/linux-yocto-3.4/commit/?id=f210735fe2f17a6225432ee3d1239bcf23a8659c http://git.yoctoproject.org/cgit/cgit.cgi/linux-yocto-3.8/commit/?id=f210735fe2f17a6225432ee3d1239bcf23a8659c commit f210735fe2f17a6225432ee3d1239bcf23a8659c headers_install: fix __packed in exported kernel headers And fsl SDK 1.4 will based on kernel 3.8 which also include this commit. So this patch can be dropped. (2) deleted: busybox-1.20.2/defconfig-fsl This defconfig is SDK specific. Remove it. (3) deleted: busybox-1.20.2/inetd{.conf} There is already submitted patches for this, but not applied: [PATCH] busybox: Add inetd related files http://patches.openembedded.org/patch/33233/ http://patches.openembedded.org/patch/33235/ The issue still exist and we will send new patches. Signed-off-by: Ting Liu <b28495@freescale.com>
* udev-extraconf: add rule to rename network interfaces for t4/b4Ting Liu2013-03-112-3/+25
| | | | | | | | | | Since on FManv3 a MEMAC can be configured either as 1G or 10G, rename all interfaces on T4/B4 to "fmX-macY", with X in the range 1..2 and Y in the range 1..10. Signed-off-by: Zhenhua Luo <b19537@freescale.com> Signed-off-by: Ioana Radulescu <ruxandra.radulescu@freescale.com> Signed-off-by: Ting Liu <b28495@freescale.com>
* udev-extraconf: added to the list of MACHINE_EXTRA_RRECOMMENDSTing Liu2013-03-116-6/+6
| | | | | | It will then added into packagegroup-basic and packagegroup-base. Signed-off-by: Ting Liu <b28495@freescale.com>
* udev-extraconf: move rules from udev and netbaseTing Liu2013-03-115-11/+13
| | | | Signed-off-by: Ting Liu <b28495@freescale.com>
* procps: remove customized sysctl.conf which is SDK specificTing Liu2013-03-082-66/+1
| | | | | | | It was added to disable rp_filter to enhance ASF IP forward performance, which is really fsl SDK specific. Signed-off-by: Ting Liu <b28495@freescale.com>
* sysvinit: remove SDK specific bitsTing Liu2013-03-082-20/+1
| | | | | | | This is fsl SDK specific, and was recommended to go to SDK layer: http://patches.openembedded.org/patch/34623/ Signed-off-by: Ting Liu <b28495@freescale.com>
* lio-utils: add tcm_start.sh and lio_start.sh to rootfsChunrong Guo2013-03-081-3/+6
| | | | | | | | | *following scripts had been added /etc/init.d/target /etc/target/tcm_start.sh /etc/target/lio_start.sh Signed-off-by: Chunrong Guo <b40290@freescale.com>
* qemu: configure properly check if -lrt is neededTing Liu2013-03-082-2/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -lrt is needed to avoid the error "undefined reference to `timer_settime'". add the check in configure. Backport from http://git.qemu.org/?p=qemu.git commit: 8bacde8d86a09699207d85d4bab06162aed18dc4 Fix the below build issue: | ../qemu-timer.o: In function `dynticks_rearm_timer': | .../qemu/1.0+fsl-r2/git/qemu-timer.c:597: undefined reference to `timer_gettime' | .../qemu/1.0+fsl-r2/git/qemu-timer.c:610: undefined reference to `timer_settime' | ../qemu-timer.o: In function `dynticks_stop_timer': | .../qemu/1.0+fsl-r2/git/qemu-timer.c:583: undefined reference to `timer_delete' | ../qemu-timer.o: In function `dynticks_start_timer': | .../qemu/1.0+fsl-r2/git/qemu-timer.c:565: undefined reference to `timer_create' | ivshmem.o: In function `pci_ivshmem_init': | .../qemu/1.0+fsl-r2/git/hw/ivshmem.c:720: undefined reference to `shm_open' | .../qemu/1.0+fsl-r2/git/hw/ivshmem.c:727: undefined reference to `shm_open' | collect2: error: ld returned 1 exit status | make[1]: *** [qemu-system-ppc] Error 1 | make: *** [subdir-ppc-softmmu] Error 2 | ERROR: oe_runmake failed | ERROR: Function failed: do_compile Yocto 1.4_M4 uses qemu 1.3.1 which includes this fix. So this issue only appeared to us. Signed-off-by: Ting Liu <b28495@freescale.com>
* remove lm_sensor as it is already in meta-oeTing Liu2013-03-081-50/+0
| | | | Signed-off-by: Ting Liu <b28495@freescale.com>
* remove images folderChunrong Guo2013-03-064-61/+0
| | | | | | | | | the customized rootfs images is specific to fsl networking SDK, move them from this layer to meta-fsl-networking layer Signed-off-by: Chunrong Guo <b40290@freescale.com> Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com> Acked-by: Otavio Salvador <otavio@ossystems.com.br>
* Revert "Remove recipes-append folder which are SDK specific"Zhenhua Luo2013-03-064-0/+61
| | | | | | | This reverts commit ee364575803812dbbb2b103d468c66c54efcc7af. The intention of the patch is to remove the confusion commit(mismatched title and change). Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
* Remove DSTRO string from PR due to meta-fsl-ppc is not distro specificZhenhua Luo2013-03-061-1/+1
| | | | | | | | conf/distro/fsl.conf has been removed from this layer, meta-fsl-ppc is not distro specific. use PRINC := "${@int(PRINC) + 1}" Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
* conf/machines: update to use SOC_FAMILYMatthew McClintock2013-02-1830-2/+63
| | | | Signed-off-by: Matthew McClintock <msm@freescale.com>
* Remove recipes-append folder which are SDK specific1.4_M3Zhenhua Luo2013-01-304-61/+0
| | | | | | | | The change in recipe-append is specific for FSL networking SDK, so move them from meta-fsl-ppc to meta-fsl-networking. Signed-off-by: Chunrong Guo <b40290@freescale.com> Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
* Remove distro conf which are BSP/SDK specificZhenhua Luo2013-01-301-94/+0
| | | | | | Remove conf/distro/fsl.conf Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
* rename collection name from fsl to fsl-ppcZhenhua Luo2013-01-301-3/+3
| | | | Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
* rcw: update SHA for e6500 targetsZhenhua Luo2013-01-301-1/+3
| | | | Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
* usdpaa: add non t4/b4 boards supportTing Liu2013-01-301-1/+4
| | | | | | commit for non t4/b4 boards was pushed to external git server too. Signed-off-by: Ting Liu <b28495@freescale.com>
* eth-config: add recipes use public git tree for eth-config buildZhenhua Luo2013-01-301-0/+22
| | | | Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
* fmc_git: add recipeTing Liu2013-01-301-0/+45
| | | | Signed-off-by: Ting Liu <b28495@freescale.com>
* fm-ucode: add recipeTing Liu2013-01-301-0/+46
| | | | Signed-off-by: Ting Liu <b28495@freescale.com>
* fmlib: add recipeTing Liu2013-01-302-0/+82
| | | | Signed-off-by: Ting Liu <b28495@freescale.com>
* usdpaa: add recipeZhenhua Luo2013-01-301-0/+33
| | | | | | use external git tree to build usdpaa for t4/b4 Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
* u-boot_git: add e6500 commit for 1.3.1 releaseTing Liu2013-01-301-7/+3
| | | | Signed-off-by: Ting Liu <b28495@freescale.com>
* update the kernel version for t4/b4 boardsZhenhua Luo2013-01-301-1/+11
| | | | | | change "3.0.48" to "3.0.51" Signed-off-by: Zhenhua Luo <b19537@freescale.com>
* fmc: update the version for legacy targetsZhenhua Luo2013-01-301-0/+2
| | | | | | | fmc_git.bb is added for e6500 targets, the default fmc version is build from git, the version(0.9.23) of legacy targets should be specified explicitly. Signed-off-by: Zhenhua Luo <b19537@freescale.com>
* add machine configure files for t4160qds and t4160qds-64bZhenhua Luo2013-01-302-0/+36
| | | | | | | currently the only difference of t4160qds and t4240qds is u-boot configure, the others are shared. Signed-off-by: Zhenhua Luo <b19537@freescale.com>
* add machine configure files for b4420qdsZhenhua Luo2013-01-302-0/+34
| | | | | | add b4420qds and b4420qds-64b machine configure files Signed-off-by: Zhenhua Luo <b19537@freescale.com>
* t4240qds: add usdpaa dts in the build listZhenhua Luo2013-01-302-2/+4
| | | | Signed-off-by: Zhenhua Luo <b19537@freescale.com>
* e6500: replace corenet64_smp_defconfig with temp e6500rev1_defconfig for nowMatthew McClintock2013-01-304-4/+4
| | | | Signed-off-by: Matthew McClintock <msm@freescale.com>
* add usdpaa dts in the build list for b4860qdsZhenhua Luo2013-01-302-2/+4
| | | | Signed-off-by: Zhenhua Luo <b19537@freescale.com>
* fsl-toolchain: install static libraryTing Liu2013-01-301-1/+4
| | | | Signed-off-by: Ting Liu <b28495@freescale.com>
* cryptodev: skip arch QA since kernel might not match for 64-bit kernels on ↵Yashpal Dutta2013-01-301-0/+18
| | | | | | 32-bit rfs Signed-off-by: Yashpal Dutta <yashpal.dutta@freescale.com>
* cryptodev kernel module recipeYashpal Dutta2013-01-302-0/+43
| | | | | | | | | This is a /dev/crypto device driver, equivalent to those in OpenBSD or FreeBSD. The main idea is to access of existing ciphers in kernel space from userspace, thus enabling re-use of a hardware implementation of a cipher. Signed-off-by: Yashpal Dutta <yashpal.dutta@freescale.com> Signed-off-by: Zhenhua Luo <b19537@freescale.com>
* boot-format_git.bb: update to latestMatthew McClintock2013-01-301-4/+3
| | | | Signed-off-by: Matthew McClintock <msm@freescale.com>
* correct the dts name for t4240qdsZhenhua Luo2013-01-301-1/+1
| | | | | | t4240.dts => t4240qds.dts Signed-off-by: Zhenhua Luo <b19537@freescale.com>
* hypervisor_git.bb: remove unneeded create_link taskMatthew McClintock2013-01-301-9/+1
| | | | Signed-off-by: Matthew McClintock <msm@freescale.com>
* libxml2_2.9.0.bbappend: remove a bbappends that's no longer requiredMatthew McClintock2013-01-301-3/+0
| | | | Signed-off-by: Matthew McClintock <msm@freescale.com>
* linux-qoriq: Add a patch to fix perf compilation issue.Noor Ahsan2013-01-172-0/+39
| | | | | | | | | | | | | | * Perf gived compilation error CC builtin-sched.o builtin-sched.c: In function ‘get_cpu_usage_nsec_parent’: builtin-sched.c:399:16: error: storage size of ‘ru’ isn’t known * Added a patch from linux kernel git repo commit id 7b78f13603c6fcb64e020a0bbe31a651ea2b657b which include resource.h file in builtin-sched.c. * Bump PR. * Verified it on P4080DS machine. Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com>
* oprofile: remove from meta-fsl-ppc and use oe-coreMatthew McClintock2013-01-174-38/+0
| | | | Signed-off-by: Matthew McClintock <msm@freescale.com>
* remove lxc since it's now in meta-virtMatthew McClintock2013-01-046-155/+0
| | | | Signed-off-by: Matthew McClintock <msm@freescale.com>
* lxc: move patches to default search pathTing Liu2012-12-044-0/+0
| | | | Signed-off-by: Ting Liu <b28495@freescale.com>
* add centos 6.3 in the supported Linux distros listTing Liu2012-12-041-0/+1
| | | | Signed-off-by: Ting Liu <b28495@freescale.com>
* using nativesdk as a prefix, not a suffixTing Liu2012-12-041-1/+1
| | | | Signed-off-by: Ting Liu <b28495@freescale.com>
* lxc: remove rdepend perl-module-warnings-registerTing Liu2012-12-041-2/+1
| | | | | | | | | | | | | | The module does not exist any more. Its content (warnings/register.pm) has been moved to the main perl package. Introduced by commit: (poky: 51cbb5ae76a22d465e2f6c5ef923ec2682624e3b) * File warnings/register.pm has been moved to package perl Fix: |error: Failed dependencies: |perl-module-warnings-register is needed by lxc-0.8.0+rc1-r6.ppce500mc |ERROR: Function failed: do_rootfs Signed-off-by: Ting Liu <b28495@freescale.com> Signed-off-by: Chunrong Guo <b40290@freescale.com>
* add Ubuntu 12.04.1 LTS in the supported Linux distros listZhenhua Luo2012-12-041-0/+1
| | | | Signed-off-by: Zhenhua Luo <b19537@freescale.com>
* linux-qoriq-sdk: move patches to default search pathMatthew McClintock2012-12-042-0/+0
| | | | Signed-off-by: Matthew McClintock <msm@freescale.com>
* README: add message about git.freescale.com vs. git.yp.orgMatthew McClintock2012-12-041-0/+9
| | | | Signed-off-by: Matthew McClintock <msm@freescale.com>