09 Feb, 2015

1 commit

  • This patch runs all the default configurations through make
    silentoldconfig and make savedefconfig to rinse out outdated kconfig
    entries.

    for config in arch/avr32/configs/*defconfig; do
    make ARCH=avr32 `basename $config`
    make ARCH=avr32 silentoldconfig
    make ARCH=avr32 savedefconfig
    cp defconfig $config
    done

    Signed-off-by: Hans-Christian Egtvedt

    Hans-Christian Egtvedt
     

10 Dec, 2013

1 commit

  • This patch removes CONFIG_MTD_PARTITIONS in config files for avr32.
    Because CONFIG_MTD_PARTITIONS was removed by commit
    6a8a98b22b10f1560d5f90aded4a54234b9b2724.

    Signed-off-by: Eunbong Song
    Acked-by: Hans-Christian Egtvedt

    Eunbong Song
     

10 Apr, 2013

1 commit


08 Nov, 2012

1 commit

  • The File-backed Storage Gadget (g_file_storage) is being removed, since
    it has been replaced by Mass Storage Gadget (g_mass_storage). This commit
    changes defconfigs point to the new gadget.

    Signed-off-by: Michal Nazarewicz
    Acked-by: Nicolas Ferre (AT91)
    Acked-by: Tony Lindgren (OMAP1)
    Acked-by: Hans-Christian Egtvedt (AVR32)
    Signed-off-by: Felipe Balbi

    Michal Nazarewicz
     

14 Jun, 2011

1 commit


14 Jan, 2011

2 commits


15 Aug, 2010

1 commit


15 Dec, 2009

1 commit


27 Jan, 2009

1 commit

  • Now that all EEPROM drivers live in the same place, let's harmonize
    their symbol names.

    Also fix eeprom's dependencies, it definitely needs sysfs, and is no
    longer experimental after many years in the kernel tree.

    Signed-off-by: Jean Delvare
    Acked-by: Wolfram Sang
    Cc: David Brownell

    Jean Delvare
     

13 Oct, 2008

1 commit

  • This patch lets the user enable support for EVKLCD100 and EVKLCD101
    (refered to by EVKLCD10X). By enabling EVKLCD10X support the LCD
    controller and AC97 controller platform devices are added.

    The user can also choose between the EVKLCD100 (QVGA display) and the
    EVKLCD101 (VGA display), this is added to automagically select the
    correct panel timing and resolution parameters.

    Enabling support for EVKLCD10X addon board will cripple the MCI platform
    device a bit since they share two GPIO lines (detect and write-protect).
    These two lines are disabled when EVKLCD10X is enabled.

    The default configurations are based upon ATNGW100, but with added AC97C
    and LCDC driver. Virtual terminal is also enabled by default for
    EVKLCD10X boards.

    Verified on hardware with a NGW100 + EVKLCD100/101.

    Signed-off-by: Hans-Christian Egtvedt
    Signed-off-by: Haavard Skinnemoen

    Hans-Christian Egtvedt