aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-08-08LINARO: Linaro-3.0.0-1003.4 u8500 onlyLinaro-3.0.0-1003.4-u8500-onlyJohn Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-08-08LINARO: Cleanup configs after removing other flavoursJohn Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-08-08Linux-linaro-3.0.0-1003.4Linaro-3.0.0-1003.4John Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-08-08LINARO: Ignore abi for nowJohn Rigby
While moving configs from y to m and m to y Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-08-08LINARO: CONFIG: Enable EXT3 and EXT4 for all flavoursJohn Rigby
And add to enforce script and set all associated configs to default. BugLink: http://bugs.launchpad.net/bugs/822593 Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-08-02LINARO: ABI BumpJohn Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-08-02LINARO: CONFIG: Enable basic profiling and tracing optionsJohn Rigby
Enabled for all platforms and added to enforce script so they will not be forgotten in future. BugLink: http://bugs.launchpad.net/bugs/764796 Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-08-01LINARO: Start new releaseJohn Rigby
Ignore: yes Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-28Linux-linaro-3.0.0-1002.3Linaro-3.0.0-1002.3John Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-28LINARO: CONFIG: Turn on CONFIG_HIGHMEMJohn Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-28LINARO: SAUCE: NO-UP: workaround mx51 build errorJohn Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-28LINARO: Start new releaseJohn Rigby
Ignore: yes Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-28Linux-linaro-3.0.0-1002.2Linaro-3.0.0-1002.2John Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-28LINARO: update configsJohn Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-28LINARO: CONFIG: Enabling tracing and profiling to work with ARM DS-5Ricardo Salveti de Araujo
Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@linaro.org>
2011-07-28LINARO: CONFIG: MMC_SDHCI=y for MX51Ricardo Salveti de Araujo
Buglink: https://bugs.launchpad.net/bugs/817317 Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@linaro.org>
2011-07-28LINARO: CONFIG: Enabling WL12XX for OmapRicardo Salveti de Araujo
Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@linaro.org>
2011-07-28LINARO: Start new releaseJohn Rigby
Ignore: yes Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-25Linux-linaro-3.0.0-1001.1Linaro-3.0.0-1001.1John Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-25LINARO: CONFIG: Enable CONFIG_OMAP2_DSS_VENCLinaro-3.0.0-1000.1John Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-25LINARO: CONFIG: enabling LED support for omapRicardo Salveti de Araujo
Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@linaro.org>
2011-07-25LINARO: CONFIG: Enable CONFIG_USB_NET_SMSC95XX=m for OmapRicardo Salveti de Araujo
Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@linaro.org>
2011-07-25LINARO: Start new releaseJohn Rigby
Ignore: yes Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-25Linux-linaro-3.0.0-1000.0John Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-25LINARO: CONFIG: Enable SCHED_MC and SCHED_SMTJohn Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-25LINARO: update configsJohn Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-25LINARO: Start new 3.0.0 releaseJohn Rigby
Ignore: yes Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-25LINARO Import debian.linaro from Linux-linaro-2.6.39-1001.2John Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-25LINARO: Use KBUILD_SCRIPTROOT to cross build scriptsJohn Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-25KBuild: Allow scripts/* to be cross compiledJohn Rigby
Cross compiling the binaries in scripts/* is not possible because various makefiles assume that $(obj)/whatever is executable on the build host. This patch introduces a new variable called KBUILD_SCRIPTROOT that points to script/binaries to use while cross compiling. Usage: Build scripts for the build host: make O=path/to/buildhost/buildscripts \ silentoldconfig prepare scripts Then cross build script for target: make O=path/to/target/buildscripts \ HOSTCC=$CROSS_COMPILE \ KBUILD_SCRIPTROOT=path/to/buildhost/buildscripts silentoldconfig prepare scripts This patch does not use KBUILD_SCRIPTROOT for all script invocations it only redefines the following if KBUILD_SCRIPTROOT is defined. scripts/Makefile.build scripts/basic/fixdep --> $(KBUILD_SCRIPTROOT)/scripts/basic/fixdep scripts/kconfig/Makefile $(obj)/conf --> $(KBUILD_SCRIPTROOT)/scripts/kconfig/conf scripts/mod/Makefile $(obj)mk_elfconfig --> $(KBUILD_SCRIPTROOT)/scripts/mod/mk_elfconfig Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-25LINARO: fix lintian errors and warningsJohn Rigby
Remove coreutils and fileutils depends: fileutils is a virtual package provided by coreutils coreutils is essential Add debconf to Pre-Depends Fix long description line for linux-headers package Fix nic-shared-modules description Fix copyright file Add dh_strip to scripts rules Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-25LINARO: add flavour splitting script and changes to use itJohn Rigby
Signed-off-by: John Rigby <john.rigby@linaro.org>
2011-07-25LINARO: add debian.linaro and make debian use itJohn Rigby
add debian.linaro from previous release patch debian to point to debian.linaro instead of debian.master Signed-off-by: John Rigby <john.rigby@linaro.org> Conflicts: debian/rules.d/1-maintainer.mk debian/rules.d/2-binary-arch.mk
2011-07-25UBUNTU: Ubuntu-3.0.0-6.7Leann Ogasawara
Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25UBUNTU: SAUCE: Input: ALPS - Enable Intellimouse mode for Lenovo Zhaoyang E47Keng-Yu Lin
The quirk enables the edge-scrolling function of the touchpad. This patch depends on the following sauce patch: commit 83ccc92aa7bc9b9d47fc31a7b54e663fb9a3d992 Author: Rezwanul Kabir <Rezwanul_Kabir@dell.com> Date: Tue Nov 23 20:15:14 2010 +0000 Add support for Intellimouse Mode in ALPS touchpad on Dell E2 series Laptops Resending modified patch to fix suspend/resume issues and restricting the quirks to Dell portables only. Dell E2 series laptops ( M4500, E6510, E6410 etc.) have ALPS touchpads which are enabled by default as 3-byte generic PS/2 mouse mode. This patch enables the 4-byte "Intellimouse Mode" ( e.g scrolling support). Signed-off-by: Rezwanul_Kabir <Rezwanul_Kabir@dell.com> BugLink: http://bugs.launchpad.net/bugs/632884 Signed-off-by: Andy Whitcroft <apw@canonical.com> BugLink: http://bugs.launchpad.net/bugs/803005 Signed-off-by: Keng-Yu Lin <kengyu@canonical.com> Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25Revert "UBUNTU: [Config] Temporarily disable CONFIG_BRCMSMAC on powerpc"Leann Ogasawara
This reverts commit 170e984dca973771bf6a470112b06441f369a86c. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25UBUNTU: [Config] Drop CONFIG_GPIO_EXYNOS4Leann Ogasawara
After reviewing "UBUNTU: [Config] Temporarily Disable CONFIG_GPIO_EXYNOS4 on arm" Drop CONFIG_GPIO_EXYNOS4 from the configs. CONFIG_GPIO_EXYNOS4 depends on CPU_EXYNOS4210 which is only enabled if ARCH_EXYNOS4. Because we enable ARCH_OMAP, this option goes away completely. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25UBUNTU: [Config] Drop CONFIG_GPIO_PLAT_SAMSUNGLeann Ogasawara
After reviewing "UBUNTU: [Config] Temporarily Disable CONFIG_GPIO_PLAT_SAMSUNG on arm" Drop CONFIG_GPIO_PLAT_SAMSUNG from the configs. CONFIG_GPIO_PLAT_SAMSUNG depends on SAMSUNG_GPIOLIB_4BIT which is only enabled if PLAT_SAMSUNG. PLAT_SAMSUNG depends on PLAT_S3C24XX || ARCH_S3C64XX || PLAT_S5P, none of wich we enable, thus CONFIG_GPIO_PLAT_SAMSUNG goes away completely. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25UBUNTU: [Config] Drop CONFIG_GPIO_S5PC100Leann Ogasawara
After reviewing "UBUNTU: [Config] Temporarily Disable CONFIG_GPIO_S5PC100 on arm" Drop CONFIG_GPIO_S5PC100 from the configs. CONFIG_GPIO_S5PC100 depends on CPU_S5PC100 which is only enabled if ARCH_S5PC100. Because we enable ARCH_OMAP, this option goes away completely. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25UBUNTU: [Config] Drop CONFIG_GPIO_S5PV210Leann Ogasawara
After reviewing "UBUNTU: [Config] Temporarily Disable CONFIG_GPIO_S5PV210 on arm" Drop CONFIG_GPIO_S5PV210 from the configs. CONFIG_GPIO_S5PV210 depends on CPU_S5PV210 which is only enabled if ARCH_S5PV210. Because we enable ARCH_OMAP, this option goes away completely. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25Revert "UBUNTU: [Config] Temporarily Disable CONFIG_RTL8192SE on arm"Leann Ogasawara
This reverts commit d87061824894fb9ab96906802e2a6d1625d7f771. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25Revert "UBUNTU: [Config] Temporarily Disable CONFIG_RTL8192SE on powerpc"Leann Ogasawara
This reverts commit ebcc7b3798efeecbe7f68493483966dcccd705f3. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25Revert "UBUNTU: [Config] Temporarily Disable CONFIG_BRCMSMAC on arm"Leann Ogasawara
This reverts commit 0637cee4195404f75aa30e23bdc4e440e8c9d18d. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25Revert "UBUNTU: [Config] Temporarily disable CONFIG_SMC91X on armel-omap"Leann Ogasawara
This reverts commit e651acd083dd7463f341dffd198f0b828b418e8c. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25UBUNTU: [Config] Set CONFIG_AD7152=m on armLeann Ogasawara
Per the non-modular module review, enable CONFIG_AD7152=m on arm for consistency across all flavors. Was likely disabled due to previous build failures. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25UBUNTU: [Config] Set CONFIG_AD7150=m on armLeann Ogasawara
Per the non-modular module review, enable CONFIG_AD7150=m on arm for consistency across all flavors. Was likely disabled due to previous build failures. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25UBUNTU: [Config] Set CONFIG_ACPI_WMI=mLeann Ogasawara
Per the non-modular module review, enable CONFIG_ACPI_WMI=m rather than built in. This driver adds support for the ACPI-WMI (Windows Management Instrumentation) mapper device (PNP0C14) found on some systems. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25UBUNTU: [Config] Set CONFIG_ACPI_SBS=mLeann Ogasawara
Per the non-modular module review, enable CONFIG_ACPI_SBS=m rather than built in. This driver supports the Smart Battery System, another type of access to battery information, found on some laptops. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25UBUNTU: [Config] Set CONFIG_ACPI_PCI_SLOT=mLeann Ogasawara
Per the non-modular module review, enable CONFIG_ACPI_PCI_SLOT=m rather than built in. This driver creates entries in /sys/bus/pci/slots/ for all PCI slots in the system. Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
2011-07-25UBUNTU: Bump ABILeann Ogasawara
Ignore: yes Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>