aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-09-22zlib: obey LDFLAGS for testsChristopher Larson
Signed-off-by: Christopher Larson <kergoth@gmail.com>
2014-09-22ltp: Added zip-native as a DEPENDSAlejandro Hernandez
The Makefile checks for zip during installation [YOCTO #6699] Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
2014-09-22flex: fix the deps for ptest buildsChristopher Larson
Building the tests for flex requires flex-native and bison-native, but the attempt to add this dependency was done incorrectly. Use an inline python conditional based on PTEST_ENABLED instead. Signed-off-by: Christopher Larson <chris_larson@mentor.com>
2014-09-22cmake.bbclass : Add support for cmake projects that use .S files.Philip Balister
UHD and GNU radio use the cmake build system. The toolchain file made from cmake.bbclass does not set the variable needs by cmake projects that use .S files. UHD added some .S files and these changes are required to build recent UHD. Signed-off-by: Philip Balister <philip@balister.org>
2014-09-17sstatesig: fix overrides behaviour to remove SIGGEN_LOCKEDSIGS_i586Hongxu Jia
Require a sig file which SIGGEN_LOCKEDSIGS_i586 is not null, but the actual SIGGEN_LOCKEDSIGS_i586 is null. Invoking 'bitbake -e' and we got: ... 3935 # $SIGGEN_LOCKEDSIGS_i586 [2 operations] 3936 # set /path/to/locked-sigs.inc:8576 3938 # del data_smart.py:406 [finalize] 3939 # "" ... It was caused by the following commit: ... (Bitbake rev: 899d45b90061eb3cf3e71029072eee42cd80930c) Author: Richard Purdie <richard.purdie@linuxfoundation.org> Date: Tue May 31 23:52:50 2011 +0100 bitbake/data_smart: Change overrides behaviour to remove expanded variables from the datastore ... We add prefix 't-' to type to workaround the overrides behaviour. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
2014-09-17sstate: set SIGGEN_LOCKEDSIGS_CHECK_LEVEL default to errorHongxu Jia
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
2014-09-17sstatesig.py: Replace '_'s with '-'s in SSTATE_LOCKEDSIGS* names.Randy Witt
Using underscores in the "types" parts of the variable names can cause unexpected issues with overrides. For example, if you have both SSTATE_LOCKEDSIGS_x86_64 and SSTATE_LOCKEDSIGS_x86_64_i586, and i586 is in OVERRIDES, then you lose all of the contents in SSTATE_LOCKEDSIGS_x86_64 and thus don't get some of the locked sstate. Using '-'s in the variable names instead, eliminates these issues. (From OE-Core rev: 6662c412a949a9f6b602c848e6303b19db7e5272) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-09-17sstatesig: Improve the support for locked down sstate cache usageHongxu Jia
Add code in the sstate hash validation code to ensure it really did install these from sstate since if it didn't should to warn/abort the build. The judgment condition is: 1) If a build is replaced by locked sstate-cache, it will triger a warn/error; 2) If objects are not used from the locked cache, it will triger a warn/error; 3) Use SIGGEN_LOCKEDSIGS_CHECK_LEVEL variable controls whether this is just a warning or a fatal error or nothing to report. [YOCTO #6639] (From OE-Core rev: 305912dce61c4fed0cbf631aa98a9e6f29db88e4) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-09-17sstatesig: Improve to handle locking of multiple machinesRichard Purdie
Instead of a single monolithic SIGGEN_LOCKEDSIGS, split this into separate variables, one per sstate package architecture. Add in a new SIGGEN_LOCKEDSIGS_TYPES variable which lists the package architectures to load in. SIGGEN_LOCKEDSIGS_TYPES is made machine specific using overrides. Also sort the hashes in the lists by PN to make diffing them easier. (From OE-Core rev: d8b0ce35981931a39e7db9d8e78de6e009b34688) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-09-17sstatesig/sstate: Add support for locked down sstate cache usageRichard Purdie
I've been giving things some thought, specifically why sstate doesn't get used more and why we have people requesting external toolchains. I'm guessing the issue is that people don't like how often sstate can change and the lack of an easy way to lock it down. Locking it down is actually quite easy so patch implements some basics of how you can do this (for example to a specific toolchain). With an addition like this to local.conf (or wherever): SIGGEN_LOCKEDSIGS = "\ gcc-cross:do_populate_sysroot:a8d91b35b98e1494957a2ddaf4598956 \ eglibc:do_populate_sysroot:13e8c68553dc61f9d67564f13b9b2d67 \ eglibc:do_packagedata:bfca0db1782c719d373f8636282596ee \ gcc-cross:do_packagedata:4b601ff4f67601395ee49c46701122f6 \ " the code at the end of the email will force the hashes to those values for the recipes mentioned. The system would then find and use those specific objects from the sstate cache instead of trying to build anything. Obviously this is a little simplistic, you might need to put an override against this to only apply those revisions for a specific architecture for example. You'd also probably want to put code in the sstate hash validation code to ensure it really did install these from sstate since if it didn't you'd want to abort the build. This patch also implements support to add to bitbake -S which dumps the locked sstate checksums for each task into a ready prepared include file locked-sigs.inc (currently placed into cwd). There is a function, bb.parse.siggen.dump_lockedsigs() which can be called to trigger the same functionality from task space. A warning is added to sstate.bbclass through a call back into the siggen class to warn if objects are not used from the locked cache. The SIGGEN_ENFORCE_LOCKEDSIGS variable controls whether this is just a warning or a fatal error. A script is provided to generate sstate directory from a locked-sigs file. (From OE-Core rev: 7e14784f2493a19c6bfe3ec3f05a5cf9797a2f22) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-09-16gcc-configure/gcc-common: Move preconfigure definition to common includeRichard Purdie
There is a race where: NOTE: recipe libgcc-initial-4.9.1-r0: task do_configure: Started NOTE: recipe gcc-runtime-4.9.1-r0: task do_preconfigure: Started | checking build system type... /home/pokybuild/yocto-autobuilder/yocto-worker/nightly-deb/build/build/tmp/work-shared/gcc-4.9.1-r0/gcc-4.9.1/libgcc/../config.sub: line 1711: syntax error near unexpected token `;;' | /home/pokybuild/yocto-autobuilder/yocto-worker/nightly-deb/build/build/tmp/work-shared/gcc-4.9.1-r0/gcc-4.9.1/libgcc/../config.sub: line 1711: ` ;;' | configure: error: /bin/bash /home/pokybuild/yocto-autobuilder/yocto-worker/nightly-deb/build/build/tmp/work-shared/gcc-4.9.1-r0/gcc-4.9.1/libgcc/../config.sub x86_64-linux failed | WARNING: exit code 2 from a shell command. so we need to make sure the preconfigure task executes in all shared work contexts. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16libgcrypt: Fix ARM assembly when building __PIC__Jackie Huang
libgcrypt.so.20 contains .text relocations, backport a patch to fix it. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16build-appliance-image: remove hardwired pathCristian Iorga
Remove wrong absolute hardwired path for the VM disk image. Fixes [YOCTO #6728]. Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16rsync: remove trailing whitespaceRoss Burton
Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16rsync: Add PACKAGECONFIG for acl/attrRoy Li
Add PACKAGECONFIG for acl/attr and setting the default value to enable them [ RB: fix PACKAGECONFIG assignment ] Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16systemd: fix to use ${libdir} for librariesChen Qi
We need to use ${libdir} instead of ${exec_prefix}/lib for libraries. Otherwise, we would meet do_install errors if multilib is enabled. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16lttng-tools: add PACKAGECONFIG to support --enable-python-bindings and lttng-ustHongxu Jia
Add PACKAGECONFIG to support --enable-python-bindings Add PACKAGECONFIG to support lttng-ust And python-bindings requires swig-native as DEPENDS, and swig-native is not in oe-core, so disable python-bindings by default Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16i2c-tools: create i2c-tools-misc package for perl scriptsChong Lu
The patch is to split those perl scripts from the main package. Add perl to RDEPENDS_i2c-tools-misc. Signed-off-by: Michel Thebeau <michel.thebeau@windriver.com> Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Chong Lu <Chong.Lu@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16portmap: add systemd service fileChen Qi
Add systemd service file for systemd support. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16portmap: fix INITSCRIPT_PARAMSChen Qi
Fix portmap init to make it run at runlevel 2,3,4,5. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16dropbear: add pam modules dependenciesWenzong Fan
If pam distro feature enabled, dropbear will need below pam rpms to work: * libpam-runtime * pam-plugin-deny * pam-plugin-permit * pam-plugin-unix Just add the runtime dependencies explicitly. Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16at-spi2-core: fix DBIND_CHECK_ALIGNOF m4 macroJoe Slater
Modify the macro so it will work when cross-compiling. Note that the values checked are normally in a site file so the macro rarely has to discover them. Signed-off-by: Joe Slater <jslater@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16grub-efi: Replace _BSD_SOURCE macro with _DEFAULT_SOURCERobert Yang
This is needed with glibc 2.20 since _BSD_SOURCE macro is gone Khem fixed grub, but the grub-efi also needs it, the patch can't apply to grub-efi, so made a new patch for it. Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16gstreamer1.0-plugins-bad.inc: Add rtmp support in gstreamer.Marie Kowalczyk
RTMP feature depends on rtmpdump. Signed-off-by: Marie Kowalczyk <marie.kowalczyk@vodalys.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16sstate.bbclass: fix sstate_hardcode_path()Robert Yang
The "grep -e (x|y)" doesn't work, for example: $ echo xy | grep -e '(x|y)' No output We can use "grep -E" (extended regexp) or "grep -e x -e y" to fix it. It only affected the cross recipes. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-16license: Improve disk usageRichard Purdie
Currently copies of the license files are made which wastes disk space and adversely affects performance. We can link these instead in most cases for small performance gains. (From OE-Core rev: 0b0f3631fd22f731b6aeedb73965e367b695028b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-09-16sstate: Fix incorrect return value handlingRichard Purdie
The use of [ and && here means $? is reset and the exit 1 error interception wasn't working, leading to "file changed as we read it" errors from sstate_create_package when heavily using hardlinks. Fix this by placing $? into a variable. (From OE-Core rev: 6e51f900b76b06c09a3d6927f8db7398e2c035ed) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-09-16shadow: Make useradd work correctly with --root againPeter Kjellerstedt
Even if useradd --root <root> is used it would still read login.defs before doing the chroot() and thus use the one provided by the host rather than the sysroot. (From OE-Core rev: b85917a4ebe636316fa7305017cd32a47b392039) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-09-11classes/populate_sdk_base: enable adding custom commands to SDK install scriptPaul Eggleton
Add an SDK_POST_INSTALL_COMMAND variable which allows additional commands to be added towards the end of the SDK install script, for e.g. additional processing that needs to be done as part of installing the SDK. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-09-11xserver-xorg: remove aarch64.patchKai Kang
Patch aarch64.patch adds aarch64 support for xserver-xorg 1.13.1 in header file servermd.h. And aarch64 is supported in version 1.15.1 already and the patch causes redefine error. So remove aarch64.patch. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-09-11build-appliance-image: upgraded VMware machine configCristian Iorga
Build Appliance VMware configuration has been modernized: - Default disk is a SATA one; - CDROM and Floppy drives removed, no real use; - 3D acceleration not really present, removed; This solves a warning that VMware Player/Workstation was displaying at boot. - IDE disk removed. - guestOS has been set to a 64bits Linux. Fixes [YOCTO #6680]. Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-09-10nspr: Upgrade to 4.10.7Saul Wold
Remove patch that was directly modifing the configure script since we can now use autoreconf to configure. This also allowed for the removal of the do_configure() functions. Added patch to remove an undefined ${srcdir}. Signed-off-by: Saul Wold <sgw@linux.intel.com>
2014-09-10packagegroup-self-hosted: move graphics packages to graphics groupJackie Huang
The following packages are gui based tools: xdg-utils # A set of common interfaces for desktop leafpad # A GTK+ text editor used in Build Appliance midori # A web browser used in Build Appliance pcmanfm # PCManFm file manager used in Build Appliance vte # Virtual terminal emulator GTK+ widget library Move them to packagegroup-self-hosted-graphics so that we can make a graphics free self-hosted image by excluding the packagegroup-self-hosted-graphics. Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
2014-09-10packagegroup.bbclass: Use immediate expanded PACKAGE_ARCH valueOtavio Salvador
When the PACKAGE_ARCH is dependant of a override, the expanding is done too late triggering the false-positive error of wrong inclusion order. To fix this we use immediate expansion operator to evaluate the PACKAGE_ARCH value in order to choose to load 'allarch' class or not. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2014-09-10oeqa/runtime: Automatic test for ptestLucian Musat
For images without ptest the packages are automatically installed alongside ptest-runner. Log results are saved in ./results folder. No cleanup is done for packages after the test is finished. Signed-off-by: Lucian Musat <georgex.l.musat@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-10oeqa/utils/logparser.py: results based log parser utilityLucian Musat
A module for parsing results based logs like ptest, compliance and performance. Supports breaking the logs into multiple sections and also provides a result object to use the parser with. The parser is initialized with the regex required to identify results and section statements in the target log file. Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com> Signed-off-by: Lucian Musat <georgex.l.musat@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-10oeqa: Added package installer to oetest to aid in future automatic install ↵Lucian Musat
of packages Signed-off-by: Lucian Musat <georgex.l.musat@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-10linux-yocto-dev: bump to v3.17+Bruce Ashfield
Update the -dev recipes PV to reflect that the development tree is now at v3.17-rc4. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2014-09-10linux-yocto/3.14: configuration updates and feature merges.Bruce Ashfield
Updating the 3.14 meta and machine SRCREVs to pick up the following changes: meta/config: a94680bfeb0e drm-gma500: build GMA500 DRM driver as kernel module 21783e2e6be2 intel-common: intel-core-32: use tunnelcreek.scc 0b46240ac3b3 soc: tunnelcreek: create tunnelcreek scc c7207d9c0e6a qemuppc64: create bsp config 8f553f77e0ad meta: Create kernel config and scc for CRIU dacb1c1ab011 meta: common-pc: add support for booting via EFI b85e4cb574d6 meta: Add CONFIG_TTY to common-pc-drivers.cfg 33f2c8d2ba33 meta: Add CONFIG_TTY to 8250.cfg e6f31e4894d5 GRE: enable gre feature. Features: b85edae6fd61 net: e1000e calls skb_set_hash b45e6dec1972 net: ppp: use sk_unattached_filter api d310945fb6d8 tracing: accelerate tracing filters with BPF 6742a0d5e218 net: filter: x86: internal BPF JIT 66f2b151dd09 net: filter: x86: split bpf_jit_compile() 3c82c5d1fc49 net: filter: Fix redefinition warnings on x86-64. 5ad74ef546a4 net: filter: additional BPF tests f097814fc305 net: filter: BPF testsuite 1bcefe39e229 net: filter: make BPF conversion more readable e75a3abd0c6f net: filter: misc/various cleanups f5cd96317979 net: filter: make register naming more comprehensible 2f485870e68b net: filter: simplify label names from jump-table d381512d96f0 bpf_dbg: fix wrong register usage d99d91c2c5a9 sched, cls: check if we could overwrite actions when changing a filter 8a03c23319dc net: filter: initialize A and X registers 77a8a3fb86cb filter: added BPF random opcode a9bb9bcd5a04 net: filter: seccomp: fix wrong decoding of BPF_S_ANC_SECCOMP_LD_W 724096236a68 filter: prevent nla extensions to peek beyond the end of the message 41bdf9a8c75f net: filter: be more defensive on div/mod by X==0 2f908136e311 net: filter: minor: fix kdoc in __sk_run_filter 2c733311d285 net: filter: rework/optimize internal BPF interpreter's instruction set 40155402aff6 net: filter: move filter accounting to filter core 2635af59e1b6 net: filter: keep original BPF program around 97147dbf46f8 net: filter: add jited flag to indicate jit compiled filters 676d895e105a net: Rename skb->rxhash to skb->hash 1e4f73c14307 tools: bpf_dbg: various misc code cleanups 47956b735bf6 timerfd: Implement timerfd_ioctl method to restore timerfd_ctx::ticks, v3 26b3ef638e06 docs: Procfs -- Document timerfd output af3430a5fdc8 timerfd: Implement show_fdinfo method 5dd4e59bf04b mm: softdirty: clear VM_SOFTDIRTY flag inside clear_refs_write() instead of clear_soft_dirty() c2a643b6da96 mm: softdirty: don't forget to save file map softdiry bit on unmap 8a98c67f7124 mm/memory.c: don't forget to set softdirty on file mapped fault 5886c8ea1f26 mm: softdirty: make freshly remapped file pages being softdirty unconditionally 8f4adad45df3 proc: show mnt_id in /proc/pid/fdinfo d7e814681dd4 gre6: Call skb_checksum_simple_validate f17fe1ff70a1 net: Generalize checksum_init functions b6d250d7bead ip6gre: add x-netns support aebe8ead74e5 gre: allow changing mac address when device is up 98268e587a24 gre: add x-netns support 923b14472945 yaffs: fix yaffs_vfs.c warnings. 1cc6b7d49394 yaffs: Avoid setting any ACL releated xattr Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2014-09-10linux-yocto/3.10: update valleyisland-io merge branchBruce Ashfield
Updating the topic branch that is used for valleyisland-io merges. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2014-09-10linux-yocto: introduce v3.17Bruce Ashfield
With this commit, we introduce the v3.17-rcX kernels, which will be released as part of the 1.7 yocto project. All architectures have been compiled and booted with this revision of the kernel. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2014-09-10perf: fix v3.17 powerpc compilation issuesBruce Ashfield
The powerpc perf arch port has two issues in the current 3.17-rc seriers. Undefined dwarf symbols and undefined pr_debug calls. commit a60335ba [perf tools powerpc: Adjust callchain based on DWARF debug info] introduces skip-callchain-idx.c, and breaks the perf build. Until fixes get into the mainline kernel, we temporarily fix the issues by adding a forced linke to -ldw and modifying skip-callchain-idx.c to include the proper debug files for pr_debug. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2014-09-10lttng-modules: fix compilation for 3.17-rcXBruce Ashfield
Updating the lttng-modules 2.5 recipe with backports from the master branch to enable builds on 3.17 based kernels. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2014-09-10linux-yocto/3.10: baytrail i/o updatesBruce Ashfield
Updating the 3.10 kernel with baytrail feature backports: e313fe1374d spi/pxa2xx: fix incorrect SW mode chipselect setting for BayTrail LPSS SPI da387aea86a8 spi/pxa2xx: change default supported DMA burst size to 1 119e77242d80 spi/pxa2xx: fix runtime PM enabling order ac2ff9de705c spi/pxa2xx: Prevent DMA from transferring too many bytes 2260921e859c spi: pxa2xx: remove unnecessary OOM messages 59f141f4a558 spi/pxa2xx-pci: Add PCI mode support for BayTrail LPSS SPI 25c8232cbb66 spi: remove DEFINE_PCI_DEVICE_TABLE macro 6eb21efb3641 i2c: designware-pci: set ideal HCNT, LCNT and SDA hold time value 4e2bd3da1739 i2c: designware-pci: add 10-bit addressing mode functionality for BYT I2C 7b813400820f i2c: designware-pci: Add Baytrail PCI IDs 5fe4585c09d1 usb: gadget: udc-core: move sysfs_notify() to a workqueue cdbdda47494a usb: gadget: don't fail when DMA isn't present 8c1914c2e3bc mmc: sdhci: add DDR50 1.8V mode support for BayTrail eMMC Controller 5ad460bf8d4a mmc: sdhci: Preset value not supported in Baytrail eMMC 3359f2b4d2d4 mmc: sdhci: Allow for irq being shared 0663d41d3b8c 8250_dw: Support all baudrates on baytrail 1866808f61bf serial: 8250_pci: add support for Intel BayTrail 472c007ce197 serial: 8250: don't change the fifo trigger level when using dma fadb6c538a2b serial: 8250_dma: check the result of TX buffer mapping e48701bee23b dmaengine: dw: don't perform DMA when dmaengine_submit is called 9fda0d3bfdd8 dmaengine: dw: introduce dwc_dostart_first_queued() helper a0b8d0199e8f dma: dw: Add suspend and resume handling for PCI mode DW_DMAC. f1c1bd979f71 pwm: lpss: Fix const qualifier and sparse warnings d6aa3e78c2ea pwm: lpss: Add support for PCI devices a8fe7a1badcd pwm: add support for Intel Low Power Subsystem PWM cd9e2e0a810c ACPI / LPSS: Add Intel BayTrail ACPI mode PWM b8dab93f3e79 pwm: Add sysfs interface Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2014-09-10e2fsprogs: update acinclude.m4Ross Burton
Some macros have been added upstream and were not being executed, so refresh our fork of this file. Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-10e2fsprogs: remove manual build of util/substRoss Burton
The build system uses BUILD_CC itself now, so we don't need to do it manually. Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-10e2fsprogs: enable verbose buildRoss Burton
Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-10e2fsprogs: remove chmodRoss Burton
This chmod doesn't appear to be needed, and history fades away in 2005. Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-10pcihp: fix possible array out of bounds, CVE-2014-5388Sona Sarmadi
Prevent out-of-bounds array access on acpi_pcihp_pci_status. [From QEMU: fa365d7cd11185237471823a5a33d36765454e16] Signed-off-by: Sona Sarmadi <sona.sarmadi@enea.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-09-10bitbake.conf: use ??= for IMAGE_ROOTFS_SIZEChen Qi
Previously, when building core-image-minimal, the rootfs size would default to 64M because we use '?=' in bitbake.conf and also '?=' in core-image-minimal.bb. The thing is, we'd like to have a default value for all images set in bitbake.conf but still allow each image recipe to set its own default value which could be overridden by users in local.conf. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>