summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-05-10linaro/configs: add no_hz_full fragmentHEADconfig-core-trackingconfig-core-4.5Anders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
2016-05-10distribution: Enable UIO as modulebalakrishna.garapati
Signed-off-by: balakrishna.garapati <balakrishna.garapati@linaro.org> Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2016-05-10distribution.conf: E100E and IXGBEAnders Roxell
E1000E: This driver supports the PCI-Express Intel(R) PRO/1000 gigabit ethernet family of adapters. IXGBE: This driver supports Intel(R) 10GbE PCI Express family of adapters. Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2015-11-30configs: android: Add android.conf with configs from AOSP kernelconfig-core-4.3Jon Medhurst
Generated by: cat android/configs/android-base.cfg \ android/configs/android-recommended.cfg \ | sed -e "/KEEP ALPHABETICALLY SORTED/d" \ >linaro/configs/android.conf
2015-10-30linaro-base: increase kmsg buffer to 18 (256KB)Koen Kooi
Systemd uses it as temp storage and is prone to overfill it. Red Hat ran into the same issue: https://bugzilla.redhat.com/show_bug.cgi?id=1123327 It's also the default value on Fedora and Ubuntu. Signed-off-by: Koen Kooi <koen.kooi@linaro.org> Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2015-10-30linaro-base: don't set an UEVENT helper, it makes udev unpredictableKoen Kooi
Signed-off-by: Koen Kooi <koen.kooi@linaro.org> Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2015-10-22linaro-base.conf: remove CONFIG_NFS_V2 is not setChase Qi
Upstream defconfigs set CONFIG_NFS_V2=y, which is needed to test kernel with NFSroot. However when we merge the linaro-base.conf, it disables CONFIG_NFS_V2, which caused NFS mount failure. Since NFS_V2 is enabled by default in the upstream defconfigs, removing line "CONFIG_NFS_V2 is not set" will keep it enabled and fix the problem. Signed-off-by: Chase Qi <chase.qi@linaro.org> Acked-by: Kevin Hilman <khilman@linaro.org>
2015-07-24distribution.conf: add few options required by systemdconfig-core-4.2Andrey Konovalov
Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
2015-07-14configs: distribution.conf: Enable CONFIG_LOCALVERSION_AUTOJon Medhurst (Tixy)
Having a verbose version name makes the provenance of a kernel more easily identifiable and so aids debugging of reported problems. Signed-off-by: Jon Medhurst <tixy@linaro.org>
2015-06-11linaro-base.conf: remove duplicatesAndrey Konovalov
Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
2015-01-11audit.conf: remove AUDIT_ARCH_COMPAT_GENERICconfig-core-3.18Fathi Boudra
cause CONFIG_ARCH_VEXPRESS to be disabled Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2015-01-09audit.conf: add config fragment to enable auditFathi Boudra
The purpose of the config fragment is to enable the audit feature testing on ARMv8. Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-12-08configs: Enable SELinux related configsVishal Bhoj
Signed-off-by: Vishal Bhoj <vishal.bhoj@linaro.org> Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
2014-12-04configs: reorganize linaro-base*.conf config fragmentsAndrey Konovalov
Currently we have linaro-base.conf (all basic config options, arch/arm specific included), and linaro-base64.conf (config options we use for arm64 builds). So for arm 32-bit builds one should use linaro-base.conf, while for arm 64-bit ones - linaro-base.conf *plus* linaro-base64.conf. This is 1) confusing (some patches I receive treat linaro-base64.conf as the only linaro-base* fragment to be used for 64-bit builds, and do the same changes to both linaro-base.conf and linaro-base64.conf), and 2) not quite right to have arch/arm specific options in the config fragment used for arch/arm64 builds. Let's leave all the generic options in linaro-base.conf, and put the arch specific ones into separate config fragments. So that the use pattern would become the same for arm 32-bit and 64-bit builds: * 32-bit case: use linaro-base.conf plus linaro-base-arm.conf * 64-bit case: use linaro-base.conf plus linaro-base-arm64.conf Not to break the current builds, the options moved to linaro-base-arm.conf are not removed from linaro-base.conf by this commit. This will be done later, when all the builds are updated to use linaro-base.conf plus linaro-base-arm.conf. Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
2014-12-02distribution.conf: enable device tree runtime self testsNaresh Kamboju
This will add few extra prints to the boot log. Example log: [ 9.860954] ### dt-test ### start of selftest - you will see error messages [ 9.861889] /testcase-data/phandle-tests/consumer-a: could not get #phandle-cells-missing for /testcase-data/phandle-tests/provider1 [ 9.861898] /testcase-data/phandle-tests/consumer-a: could not get #phandle-cells-missing for /testcase-data/phandle-tests/provider1 [ 9.861912] /testcase-data/phandle-tests/consumer-a: could not find phandle [ 9.861924] /testcase-data/phandle-tests/consumer-a: could not find phandle [ 9.861935] /testcase-data/phandle-tests/consumer-a: arguments longer than property [ 9.861945] /testcase-data/phandle-tests/consumer-a: arguments longer than property [ 9.863717] irq: no irq domain found for /testcase-data/interrupts/intc0 ! [ 9.868324] ### dt-test ### end of selftest - 96 passed, 0 failed Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org> Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
2014-09-29distribution.conf: CONFIG_IPV6=mconfig-core-3.17Andrey Konovalov
Now that the android topic is fixed, CONFIG_IPV6=y is no longer needed. Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
2014-09-26configs: Add config fragment for gcovRiku Voipio
This patch adds config options to enable gcov profile. CONFIG_GCOV_KERNEL=y CONFIG_GCOV_PROFILE_ALL=y CONFIG_GCOV_FORMAT_AUTODETECT=y From: Naresh Kamboju <naresh.kamboju@linaro.org> Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
2014-09-26linaro-base.conf: enable DEBUG_INFO for perf testsFathi Boudra
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26configs: android: Enable SELinux related configsVishal Bhoj
Signed-off-by: Vishal Bhoj <vishal.bhoj@linaro.org>
2014-09-26linaro-base.conf: enable GPIO_SYSFSFathi Boudra
It's required by powerdebug. Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26uprobes: add CONFIG_USER_NS=yAndrey Konovalov
Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
2014-09-26bigendian.conf: remove CONFIG_CPU_BE8_BOOT_LEAndrey Konovalov
CONFIG_CPU_BE8_BOOT_LE is not present in 3.14. Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
2014-09-26distribution.conf: use CC_STACKPROTECTOR_REGULAR introduced in 3.14Fathi Boudra
In 3.14, CONFIG_CC_STACKPROTECTOR_STRONG is introduced and CONFIG_CC_STACKPROTECTOR is renamed to CONFIG_CC_STACKPROTECTOR_REGULAR. http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=8779657d29c0ebcc0c94ede4df2f497baf1b563f Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26uprobes: clean up uprobes config fragments from uneeded configsFathi Boudra
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26configs: android: Add ION configs to android framgmentJohn Stultz
In order to make sure we build ION in future builds, enable ION core as well as the test and dummy drivers. Cc: Amit Pundir <amit.pundir@linaro.org> Cc: Fathi Boudra <fathi.boudra@linaro.org> Cc: Andrey Konovalov <andrey.konovalov@linaro.org> Signed-off-by: John Stultz <john.stultz@linaro.org>
2014-09-26android.conf: enable CONFIG_SYNC and familyAmit Pundir
SYNC configs are used in validating "sync" tests available in linaro-android-kernel-tests private repo. Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
2014-09-26configs: Add config fragments for uprobes/kprobeNaresh Kamboju
This patch adds config fragments to enable uprobes/kprobes, relay and debug info Following in-built kprobes tests enabled. - KPROBES_SANITY_TEST - ARM_KPROBES_TEST Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
2014-09-26distribution.conf: enable BLK_DEV_LOOPRiku Voipio
LOOP block device is needed by kpartx and other tools for loopback mounts. Enable it in distribution conf to have it everywhere. Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
2014-09-26distribution: enable NETFILTER_XT_MATCH_CONNTRACK (LP: #1255382)Fathi Boudra
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26distribution: enable more modules for netfilter and bridgingFathi Boudra
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26distribution: enable xtables "state" match supportFathi Boudra
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26kvm-host: turn ethernet bridging to moduleFathi Boudra
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26distribution.conf: add more options for libvirt/openstackAndrey Konovalov
Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
2014-09-26configs: Add config fragments for big LITTLE IKSNaresh Kamboju
This patch adds config fragments used to enable most of the features used by big LITTLE IKS. Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
2014-09-26configs: add network namespace and virtual ethernetZi Shen Lim
Network namespace and virtual ethernet are a useful combination for networking related testing, containers, etc. Enable namespaces, which by default includes network namespace. Also enable virtual ethernet support. Signed-off-by: Zi Shen Lim <zishen.lim@linaro.org>
2014-09-26distribution.conf: add more netfilter configs for the ltp networking iptable ↵Vincent Hsu
test Signed-off-by: Vincent Hsu <vincent.hsu@linaro.org>
2014-09-26linaro/configs: add hugepage config fragmentZi Shen Lim
Signed-off-by: Zi Shen Lim <zishen.lim@linaro.org>
2014-09-26linaro/configs/kvm-guest: add extra devicesRyan Harkin
Add extra devices needed for arm64 KVM testing. Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org> Signed-off-by: Jon Medhurst <tixy@linaro.org> Acked-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26configs: Add config fragments for bigendian ARMV7 LinuxVictor Kamensky
This patch adds config fragments to enable big endian mode for Linux kernel. Note at this point CONFIG_VIRTUALIZATION explicitly disabled - BE kernel does not work with it yet. Signed-off-by: Victor Kamensky <victor.kamensky@linaro.org>
2014-09-26configs: create linaro-base64.conf for generic ARM64 config optionsAndrey Konovalov
... and put the options required for libhugetlbfs into it. Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
2014-09-26distribution.conf: enable BRIDGE_EBT_T_NAT, required by libvirtFathi Boudra
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26Get rid of ubuntu-minimal config fragmentFathi Boudra
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26linaro-base.conf: CONFIG_HOTPLUG has been eradicatedFathi Boudra
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26kvm-host.conf: enable guest OS networkingKim Phillips
Bridge and TUN/TAP support are needed for enabling networking with a guest OS. Signed-off-by: Kim Phillips <kim.phillips@linaro.org> Acked-by: Riku Voipio <riku.voipio@linaro.org>
2014-09-26Add snippet for xen-enabled kernelsWookey
2014-09-26linaro-base.conf: remove CONFIG_MTD_CHAR=y - it doesn't exist anymore.Fathi Boudra
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26distribution.conf: add more configs for libvirt (NETFILTER_XT_CONNMARK,Fathi Boudra
NETFILTER_XT_MARK, NETFILTER_XT_TARGET_CHECKSUM, BRIDGE_EBT_MARK_T) Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26kvm-host.conf: remove CONFIG_NFS_*, NFS support is enabled fromFathi Boudra
linaro-base.conf Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2014-09-26add NBD guestfs accessRiku Voipio
2014-09-26kvm-host: set CONFIG_VIRTUALIZATION=yRiku Voipio