All of lore.kernel.org
 help / color / mirror / Atom feed
* Remove unused default configurations
@ 2010-09-13 15:13 Vincent Sanders
  2010-09-13 15:13 ` [PATCH 1/9] Remove unused default configuration Vincent Sanders
                   ` (10 more replies)
  0 siblings, 11 replies; 23+ messages in thread
From: Vincent Sanders @ 2010-09-13 15:13 UTC (permalink / raw)
  To: linux-arm-kernel


Several default configurations have failed to build for the entire
2.6.36 cycle. There are several causes to these faliures. The exact
issues can be tracked on http://armlinux.simtec.co.uk/kautobuild/

Obviously the maintainers are not using these default configurations
because if they were they would have fixed the build issues by now.

As Linus has made it very clear the number of default configurations
must be reduced as much as possible I have come up with the following
series which will remove these nine unused configurations. This will
reduce our build coverage by ten machines as all but one are a single
config per machine.

 msm_defconfig               |   72 ------------------
 mx1_defconfig               |   90 -----------------------
 mx51_defconfig              |  171 --------------------------------------------
 n8x0_defconfig              |   94 ------------------------
 omap_generic_2420_defconfig |   37 ---------
 pxa3xx_defconfig            |  134 ----------------------------------
 qil-a9260_defconfig         |  115 -----------------------------
 usb-a9260_defconfig         |  106 ---------------------------
 usb-a9263_defconfig         |  106 ---------------------------
 9 files changed, 925 deletions(-)

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [PATCH 1/9] Remove unused default configuration
  2010-09-13 15:13 Remove unused default configurations Vincent Sanders
@ 2010-09-13 15:13 ` Vincent Sanders
  2010-09-13 15:13 ` [PATCH 2/9] " Vincent Sanders
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 23+ messages in thread
From: Vincent Sanders @ 2010-09-13 15:13 UTC (permalink / raw)
  To: linux-arm-kernel

From: Vincent Sanders <vince@simtec.co.uk>

The msm default configuration has not built throughout the 2.6.36
series (since 2.6.35). The build has failed with

arch/arm/mach-msm/board-halibut.c: In function 'halibut_fixup':
arch/arm/mach-msm/board-halibut.c:86: error: 'struct membank' has no member named 'node'
arch/arm/mach-msm/board-halibut.c:86: error: implicit declaration of function 'PHYS_TO_NID'

This configuration appers to be unused by the maintainer so remove it.

Signed-off-by: Vincent Sanders <vince@kyllikki.org>
---
 arch/arm/configs/msm_defconfig |   72 ----------------------------------------
 1 files changed, 0 insertions(+), 72 deletions(-)
 delete mode 100644 arch/arm/configs/msm_defconfig

diff --git a/arch/arm/configs/msm_defconfig b/arch/arm/configs/msm_defconfig
deleted file mode 100644
index 2b8f7af..0000000
--- a/arch/arm/configs/msm_defconfig
+++ /dev/null
@@ -1,72 +0,0 @@
-CONFIG_EXPERIMENTAL=y
-CONFIG_IKCONFIG=y
-CONFIG_IKCONFIG_PROC=y
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_SLAB=y
-# CONFIG_BLK_DEV_BSG is not set
-# CONFIG_IOSCHED_DEADLINE is not set
-# CONFIG_IOSCHED_CFQ is not set
-CONFIG_ARCH_MSM=y
-CONFIG_MACH_HALIBUT=y
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-CONFIG_PREEMPT=y
-CONFIG_AEABI=y
-# CONFIG_OABI_COMPAT is not set
-CONFIG_ZBOOT_ROM_TEXT=0x0
-CONFIG_ZBOOT_ROM_BSS=0x0
-CONFIG_CMDLINE="mem=64M console=ttyMSM,115200n8"
-CONFIG_PM=y
-CONFIG_NET=y
-CONFIG_UNIX=y
-CONFIG_INET=y
-# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
-# CONFIG_INET_XFRM_MODE_TUNNEL is not set
-# CONFIG_INET_XFRM_MODE_BEET is not set
-# CONFIG_INET_DIAG is not set
-# CONFIG_IPV6 is not set
-CONFIG_MTD=y
-CONFIG_MTD_PARTITIONS=y
-CONFIG_MTD_CMDLINE_PARTS=y
-CONFIG_MTD_CHAR=y
-CONFIG_MTD_BLOCK=y
-CONFIG_NETDEVICES=y
-CONFIG_DUMMY=y
-CONFIG_NET_ETHERNET=y
-CONFIG_SMC91X=y
-CONFIG_PPP=y
-CONFIG_PPP_ASYNC=y
-CONFIG_PPP_DEFLATE=y
-CONFIG_PPP_BSDCOMP=y
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
-CONFIG_INPUT_EVDEV=y
-# CONFIG_KEYBOARD_ATKBD is not set
-# CONFIG_INPUT_MOUSE is not set
-CONFIG_INPUT_TOUCHSCREEN=y
-CONFIG_INPUT_MISC=y
-# CONFIG_SERIO is not set
-CONFIG_VT_HW_CONSOLE_BINDING=y
-CONFIG_SERIAL_MSM=y
-CONFIG_SERIAL_MSM_CONSOLE=y
-# CONFIG_LEGACY_PTYS is not set
-# CONFIG_HW_RANDOM is not set
-CONFIG_I2C=y
-# CONFIG_HWMON is not set
-CONFIG_VIDEO_OUTPUT_CONTROL=y
-CONFIG_FB=y
-CONFIG_FB_MODE_HELPERS=y
-CONFIG_FB_TILEBLITTING=y
-CONFIG_FB_MSM=y
-# CONFIG_VGA_CONSOLE is not set
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=y
-CONFIG_INOTIFY=y
-CONFIG_TMPFS=y
-CONFIG_MAGIC_SYSRQ=y
-CONFIG_DEBUG_KERNEL=y
-CONFIG_SCHEDSTATS=y
-CONFIG_DEBUG_MUTEXES=y
-CONFIG_DEBUG_SPINLOCK_SLEEP=y
-CONFIG_DEBUG_INFO=y
-CONFIG_DEBUG_LL=y
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 2/9] Remove unused default configuration
  2010-09-13 15:13 Remove unused default configurations Vincent Sanders
  2010-09-13 15:13 ` [PATCH 1/9] Remove unused default configuration Vincent Sanders
@ 2010-09-13 15:13 ` Vincent Sanders
  2010-09-14 14:05   ` Uwe Kleine-König
  2010-09-13 15:13 ` [PATCH 3/9] " Vincent Sanders
                   ` (8 subsequent siblings)
  10 siblings, 1 reply; 23+ messages in thread
From: Vincent Sanders @ 2010-09-13 15:13 UTC (permalink / raw)
  To: linux-arm-kernel

From: Vincent Sanders <vince@simtec.co.uk>

The mx1 default configuration has not built throughout the 2.6.36
series (since 2.6.35-git1). The link has failed with

fs/built-in.o: In function `nfs_callback_authenticate':
compr_zlib.c:(.text+0x7c12c): undefined reference to `svc_gss_principal'

This configuration appers to be unused by the maintainer so remove it.

Signed-off-by: Vincent Sanders <vince@kyllikki.org>
---
 arch/arm/configs/mx1_defconfig |   90 ----------------------------------------
 1 files changed, 0 insertions(+), 90 deletions(-)
 delete mode 100644 arch/arm/configs/mx1_defconfig

diff --git a/arch/arm/configs/mx1_defconfig b/arch/arm/configs/mx1_defconfig
deleted file mode 100644
index 2f38d97..0000000
--- a/arch/arm/configs/mx1_defconfig
+++ /dev/null
@@ -1,90 +0,0 @@
-CONFIG_EXPERIMENTAL=y
-CONFIG_SYSVIPC=y
-CONFIG_IKCONFIG=y
-CONFIG_IKCONFIG_PROC=y
-CONFIG_LOG_BUF_SHIFT=14
-CONFIG_SYSFS_DEPRECATED_V2=y
-CONFIG_EMBEDDED=y
-CONFIG_SLAB=y
-CONFIG_MODULES=y
-CONFIG_MODULE_UNLOAD=y
-CONFIG_MODULE_FORCE_UNLOAD=y
-CONFIG_MODVERSIONS=y
-# CONFIG_BLK_DEV_BSG is not set
-CONFIG_ARCH_MXC=y
-CONFIG_ARCH_MX1=y
-CONFIG_ARCH_MX1ADS=y
-CONFIG_MACH_SCB9328=y
-CONFIG_MXC_IRQ_PRIOR=y
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-CONFIG_PREEMPT=y
-CONFIG_AEABI=y
-CONFIG_ZBOOT_ROM_TEXT=0x0
-CONFIG_ZBOOT_ROM_BSS=0x0
-CONFIG_CMDLINE="noinitrd console=ttymxc0,115200 root=/dev/mtdblock2 rw ip=off"
-CONFIG_PM=y
-CONFIG_PM_DEBUG=y
-CONFIG_NET=y
-CONFIG_PACKET=y
-CONFIG_UNIX=y
-CONFIG_INET=y
-CONFIG_IP_PNP=y
-CONFIG_IP_PNP_DHCP=y
-# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
-# CONFIG_INET_XFRM_MODE_TUNNEL is not set
-# CONFIG_INET_XFRM_MODE_BEET is not set
-# CONFIG_INET_LRO is not set
-# CONFIG_INET_DIAG is not set
-# CONFIG_IPV6 is not set
-CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
-CONFIG_FW_LOADER=m
-CONFIG_MTD=y
-CONFIG_MTD_PARTITIONS=y
-CONFIG_MTD_CMDLINE_PARTS=y
-CONFIG_MTD_CHAR=y
-CONFIG_MTD_BLOCK=y
-CONFIG_MTD_CFI=y
-CONFIG_MTD_PHYSMAP=y
-# CONFIG_BLK_DEV is not set
-# CONFIG_MISC_DEVICES is not set
-CONFIG_NETDEVICES=y
-CONFIG_PHYLIB=y
-CONFIG_SMSC_PHY=y
-CONFIG_NET_ETHERNET=y
-CONFIG_DM9000=y
-# CONFIG_NETDEV_1000 is not set
-# CONFIG_NETDEV_10000 is not set
-# CONFIG_INPUT is not set
-# CONFIG_SERIO is not set
-# CONFIG_VT is not set
-CONFIG_SERIAL_IMX=y
-CONFIG_SERIAL_IMX_CONSOLE=y
-# CONFIG_LEGACY_PTYS is not set
-# CONFIG_HW_RANDOM is not set
-CONFIG_I2C=y
-CONFIG_I2C_CHARDEV=y
-CONFIG_I2C_IMX=y
-CONFIG_W1=y
-CONFIG_W1_MASTER_MXC=y
-CONFIG_W1_SLAVE_THERM=y
-# CONFIG_HWMON is not set
-CONFIG_FB=y
-CONFIG_USB_GADGET=y
-CONFIG_USB_GADGET_IMX=y
-CONFIG_USB_ETH=m
-CONFIG_MMC=y
-CONFIG_MMC_MXC=y
-# CONFIG_DNOTIFY is not set
-CONFIG_INOTIFY=y
-CONFIG_TMPFS=y
-CONFIG_JFFS2_FS=y
-CONFIG_NFS_FS=y
-CONFIG_NFS_V3=y
-CONFIG_NFS_V4=y
-CONFIG_ROOT_NFS=y
-# CONFIG_ENABLE_WARN_DEPRECATED is not set
-# CONFIG_ENABLE_MUST_CHECK is not set
-# CONFIG_RCU_CPU_STALL_DETECTOR is not set
-CONFIG_SYSCTL_SYSCALL_CHECK=y
-# CONFIG_CRYPTO_ANSI_CPRNG is not set
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 3/9] Remove unused default configuration
  2010-09-13 15:13 Remove unused default configurations Vincent Sanders
  2010-09-13 15:13 ` [PATCH 1/9] Remove unused default configuration Vincent Sanders
  2010-09-13 15:13 ` [PATCH 2/9] " Vincent Sanders
@ 2010-09-13 15:13 ` Vincent Sanders
  2010-09-13 15:13 ` [PATCH 4/9] Remove unused n8x0 " Vincent Sanders
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 23+ messages in thread
From: Vincent Sanders @ 2010-09-13 15:13 UTC (permalink / raw)
  To: linux-arm-kernel

From: Vincent Sanders <vince@simtec.co.uk>

The mx51 default configuration has not built throughout the 2.6.36
series (since 2.6.35-git1). The link has failed with

fs/built-in.o: In function `nfs_callback_authenticate':
compr_zlib.c:(.text+0x7c12c): undefined reference to `svc_gss_principal'

In addition this build has several unique warnings

arch/arm/mach-mx5/clock-mx51.c:624: warning: 'ckih_clk' defined but not used
arch/arm/mach-mx5/clock-mx51.c:628: warning: 'ckih2_clk' defined but not used
arch/arm/mach-mx5/clock-mx51.c:747: warning: 'aips_tz2_clk' defined but not used
arch/arm/mach-mx5/clock-mx51.c:756: warning: 'gpt_32k_clk' defined but not used
arch/arm/mach-mx5/clock-mx51.c:792: warning: 'uart1_ipg_clk' defined but not used
arch/arm/mach-mx5/clock-mx51.c:794: warning: 'uart2_ipg_clk' defined but not used
arch/arm/mach-mx5/clock-mx51.c:796: warning: 'uart3_ipg_clk' defined but not used
arch/arm/mach-mx5/clock-mx51.c:802: warning: 'gpt_ipg_clk' defined but not used
arch/arm/mach-mx5/board-mx51_babbage.c: In function 'initialize_otg_port':
arch/arm/mach-mx5/board-mx51_babbage.c:184: warning: assignment makes integer from pointer without a cast
arch/arm/mach-mx5/board-mx51_babbage.c: In function 'initialize_usbh1_port':
arch/arm/mach-mx5/board-mx51_babbage.c:202: warning: assignment makes integer from pointer without a cast
arch/arm/plat-mxc/ehci.c: In function 'mxc_initialize_usb_hw':
arch/arm/plat-mxc/ehci.c:260: warning: assignment makes integer from pointer without a cast
arch/arm/plat-mxc/ehci.c:263: warning: assignment makes integer from pointer without a cast
arch/arm/plat-mxc/ehci.c:270: warning: assignment makes integer from pointer without a cast

This configuration appers to be unused by the maintainer so remove it.

Signed-off-by: Vincent Sanders <vince@kyllikki.org>
---
 arch/arm/configs/mx51_defconfig |  171 ---------------------------------------
 1 files changed, 0 insertions(+), 171 deletions(-)
 delete mode 100644 arch/arm/configs/mx51_defconfig

diff --git a/arch/arm/configs/mx51_defconfig b/arch/arm/configs/mx51_defconfig
deleted file mode 100644
index a665ecb..0000000
--- a/arch/arm/configs/mx51_defconfig
+++ /dev/null
@@ -1,171 +0,0 @@
-CONFIG_EXPERIMENTAL=y
-# CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_SYSVIPC=y
-CONFIG_LOG_BUF_SHIFT=18
-CONFIG_RELAY=y
-CONFIG_EMBEDDED=y
-# CONFIG_SLUB_DEBUG is not set
-# CONFIG_COMPAT_BRK is not set
-CONFIG_MODULES=y
-CONFIG_MODULE_UNLOAD=y
-CONFIG_MODVERSIONS=y
-CONFIG_MODULE_SRCVERSION_ALL=y
-# CONFIG_LBDAF is not set
-# CONFIG_BLK_DEV_BSG is not set
-CONFIG_ARCH_MXC=y
-CONFIG_ARCH_MX5=y
-CONFIG_MACH_MX51_BABBAGE=y
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-CONFIG_PREEMPT_VOLUNTARY=y
-CONFIG_AEABI=y
-# CONFIG_OABI_COMPAT is not set
-CONFIG_DEFAULT_MMAP_MIN_ADDR=32768
-CONFIG_CMDLINE="noinitrd console=ttymxc0,115200 root=/dev/nfs nfsroot=192.168.0.101:/shared/nfs ip=dhcp"
-CONFIG_VFP=y
-CONFIG_NEON=y
-CONFIG_BINFMT_MISC=m
-CONFIG_PM=y
-CONFIG_PM_DEBUG=y
-CONFIG_PM_TEST_SUSPEND=y
-CONFIG_NET=y
-CONFIG_PACKET=y
-CONFIG_UNIX=y
-CONFIG_INET=y
-CONFIG_IP_PNP=y
-CONFIG_IP_PNP_DHCP=y
-# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
-# CONFIG_INET_XFRM_MODE_TUNNEL is not set
-# CONFIG_INET_XFRM_MODE_BEET is not set
-# CONFIG_INET_LRO is not set
-# CONFIG_IPV6 is not set
-# CONFIG_WIRELESS is not set
-# CONFIG_STANDALONE is not set
-CONFIG_CONNECTOR=y
-CONFIG_BLK_DEV_LOOP=y
-CONFIG_BLK_DEV_RAM=y
-CONFIG_BLK_DEV_RAM_SIZE=65536
-# CONFIG_MISC_DEVICES is not set
-CONFIG_SCSI=y
-# CONFIG_SCSI_PROC_FS is not set
-CONFIG_BLK_DEV_SD=y
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_SCSI_CONSTANTS=y
-CONFIG_SCSI_LOGGING=y
-CONFIG_SCSI_SCAN_ASYNC=y
-# CONFIG_SCSI_LOWLEVEL is not set
-CONFIG_ATA=m
-CONFIG_NETDEVICES=y
-CONFIG_MARVELL_PHY=y
-CONFIG_DAVICOM_PHY=y
-CONFIG_QSEMI_PHY=y
-CONFIG_LXT_PHY=y
-CONFIG_CICADA_PHY=y
-CONFIG_VITESSE_PHY=y
-CONFIG_SMSC_PHY=y
-CONFIG_BROADCOM_PHY=y
-CONFIG_ICPLUS_PHY=y
-CONFIG_REALTEK_PHY=y
-CONFIG_NATIONAL_PHY=y
-CONFIG_STE10XP=y
-CONFIG_LSI_ET1011C_PHY=y
-CONFIG_FIXED_PHY=y
-CONFIG_MDIO_BITBANG=y
-CONFIG_MDIO_GPIO=y
-CONFIG_NET_ETHERNET=y
-CONFIG_MII=m
-CONFIG_FEC=y
-# CONFIG_NETDEV_1000 is not set
-# CONFIG_NETDEV_10000 is not set
-# CONFIG_WLAN is not set
-CONFIG_INPUT_FF_MEMLESS=m
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
-CONFIG_INPUT_EVDEV=y
-CONFIG_INPUT_EVBUG=m
-CONFIG_MOUSE_PS2=m
-CONFIG_MOUSE_PS2_ELANTECH=y
-CONFIG_SERIO_SERPORT=m
-CONFIG_VT_HW_CONSOLE_BINDING=y
-# CONFIG_DEVKMEM is not set
-CONFIG_SERIAL_IMX=y
-CONFIG_SERIAL_IMX_CONSOLE=y
-# CONFIG_LEGACY_PTYS is not set
-CONFIG_HW_RANDOM=y
-CONFIG_I2C=y
-# CONFIG_I2C_COMPAT is not set
-CONFIG_I2C_CHARDEV=m
-# CONFIG_I2C_HELPER_AUTO is not set
-CONFIG_I2C_ALGOBIT=m
-CONFIG_I2C_ALGOPCF=m
-CONFIG_I2C_ALGOPCA=m
-CONFIG_GPIO_SYSFS=y
-# CONFIG_HWMON is not set
-# CONFIG_VGA_CONSOLE is not set
-# CONFIG_HID_SUPPORT is not set
-CONFIG_USB=y
-CONFIG_USB_EHCI_HCD=y
-CONFIG_USB_EHCI_MXC=y
-CONFIG_MMC=y
-CONFIG_MMC_BLOCK=m
-CONFIG_MMC_SDHCI=m
-CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=m
-CONFIG_RTC_CLASS=y
-CONFIG_RTC_INTF_DEV_UIE_EMUL=y
-CONFIG_EXT2_FS=y
-CONFIG_EXT2_FS_XATTR=y
-CONFIG_EXT2_FS_POSIX_ACL=y
-CONFIG_EXT2_FS_SECURITY=y
-CONFIG_EXT3_FS=y
-CONFIG_EXT3_DEFAULTS_TO_ORDERED=y
-CONFIG_EXT3_FS_POSIX_ACL=y
-CONFIG_EXT3_FS_SECURITY=y
-CONFIG_EXT4_FS=y
-CONFIG_EXT4_FS_POSIX_ACL=y
-CONFIG_EXT4_FS_SECURITY=y
-CONFIG_INOTIFY=y
-CONFIG_QUOTA=y
-CONFIG_QUOTA_NETLINK_INTERFACE=y
-# CONFIG_PRINT_QUOTA_WARNING is not set
-CONFIG_AUTOFS_FS=y
-CONFIG_AUTOFS4_FS=y
-CONFIG_FUSE_FS=y
-CONFIG_ISO9660_FS=m
-CONFIG_JOLIET=y
-CONFIG_ZISOFS=y
-CONFIG_UDF_FS=m
-CONFIG_MSDOS_FS=m
-CONFIG_VFAT_FS=y
-CONFIG_CONFIGFS_FS=m
-CONFIG_NFS_FS=y
-CONFIG_NFS_V3=y
-CONFIG_NFS_V3_ACL=y
-CONFIG_NFS_V4=y
-CONFIG_ROOT_NFS=y
-CONFIG_NLS_DEFAULT="cp437"
-CONFIG_NLS_CODEPAGE_437=y
-CONFIG_NLS_ASCII=y
-CONFIG_NLS_ISO8859_1=m
-CONFIG_NLS_ISO8859_15=m
-CONFIG_NLS_UTF8=y
-CONFIG_MAGIC_SYSRQ=y
-CONFIG_DEBUG_FS=y
-CONFIG_DEBUG_KERNEL=y
-# CONFIG_DETECT_SOFTLOCKUP is not set
-# CONFIG_SCHED_DEBUG is not set
-# CONFIG_DEBUG_BUGVERBOSE is not set
-# CONFIG_RCU_CPU_STALL_DETECTOR is not set
-# CONFIG_FTRACE is not set
-# CONFIG_ARM_UNWIND is not set
-CONFIG_DEBUG_LL=y
-CONFIG_EARLY_PRINTK=y
-CONFIG_KEYS=y
-CONFIG_SECURITYFS=y
-CONFIG_CRYPTO_DEFLATE=y
-CONFIG_CRYPTO_LZO=y
-# CONFIG_CRYPTO_ANSI_CPRNG is not set
-# CONFIG_CRYPTO_HW is not set
-CONFIG_CRC_CCITT=m
-CONFIG_CRC_T10DIF=y
-CONFIG_CRC7=m
-CONFIG_LIBCRC32C=m
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 4/9] Remove unused n8x0 default configuration
  2010-09-13 15:13 Remove unused default configurations Vincent Sanders
                   ` (2 preceding siblings ...)
  2010-09-13 15:13 ` [PATCH 3/9] " Vincent Sanders
@ 2010-09-13 15:13 ` Vincent Sanders
  2010-09-13 15:13 ` [PATCH 5/9] Remove unused omap generic 2420 " Vincent Sanders
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 23+ messages in thread
From: Vincent Sanders @ 2010-09-13 15:13 UTC (permalink / raw)
  To: linux-arm-kernel

From: Vincent Sanders <vince@simtec.co.uk>

The n8x0 default configuration has not built throughout the 2.6.36
series (since 2.6.35-git1). The link has failed with

arch/arm/plat-omap/built-in.o: In function `newled_init':
/var/tmp/kernel-orig/arch/arm/plat-omap/debug-leds.c:249: undefined reference to `led_classdev_register'

In addition there is a modpost warning about six section mismatches

This configuration appers to be unused by the maintainer so remove it.

Signed-off-by: Vincent Sanders <vince@kyllikki.org>
---
 arch/arm/configs/n8x0_defconfig |   94 ---------------------------------------
 1 files changed, 0 insertions(+), 94 deletions(-)
 delete mode 100644 arch/arm/configs/n8x0_defconfig

diff --git a/arch/arm/configs/n8x0_defconfig b/arch/arm/configs/n8x0_defconfig
deleted file mode 100644
index 56aebb6..0000000
--- a/arch/arm/configs/n8x0_defconfig
+++ /dev/null
@@ -1,94 +0,0 @@
-CONFIG_EXPERIMENTAL=y
-CONFIG_SYSVIPC=y
-CONFIG_LOG_BUF_SHIFT=14
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_MODULES=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_LBDAF is not set
-# CONFIG_BLK_DEV_BSG is not set
-# CONFIG_IOSCHED_DEADLINE is not set
-CONFIG_ARCH_OMAP=y
-CONFIG_ARCH_OMAP2=y
-CONFIG_OMAP_RESET_CLOCKS=y
-# CONFIG_OMAP_MUX is not set
-# CONFIG_OMAP_MCBSP is not set
-CONFIG_OMAP_MBOX_FWK=y
-CONFIG_OMAP_32K_TIMER=y
-CONFIG_ARCH_OMAP2420=y
-CONFIG_MACH_NOKIA_N8X0=y
-CONFIG_AEABI=y
-CONFIG_LEDS=y
-CONFIG_ZBOOT_ROM_TEXT=0x10C08000
-CONFIG_ZBOOT_ROM_BSS=0x10200000
-CONFIG_CMDLINE="root=/dev/mmcblk0p2 console=ttyS2,115200n8 debug earlyprintk rootwait"
-CONFIG_FPE_NWFPE=y
-CONFIG_VFP=y
-CONFIG_PM=y
-CONFIG_PM_RUNTIME=y
-CONFIG_NET=y
-CONFIG_UNIX=y
-CONFIG_INET=y
-# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
-# CONFIG_INET_XFRM_MODE_TUNNEL is not set
-# CONFIG_INET_XFRM_MODE_BEET is not set
-# CONFIG_INET_LRO is not set
-# CONFIG_IPV6 is not set
-CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
-CONFIG_MTD=y
-CONFIG_MTD_CMDLINE_PARTS=y
-CONFIG_MTD_ONENAND=y
-CONFIG_MTD_ONENAND_OMAP2=y
-CONFIG_MTD_ONENAND_OTP=y
-CONFIG_BLK_DEV_RAM=y
-# CONFIG_MISC_DEVICES is not set
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
-# CONFIG_INPUT_KEYBOARD is not set
-# CONFIG_INPUT_MOUSE is not set
-CONFIG_SERIAL_8250=y
-CONFIG_SERIAL_8250_CONSOLE=y
-# CONFIG_LEGACY_PTYS is not set
-# CONFIG_HW_RANDOM is not set
-CONFIG_I2C=y
-# CONFIG_I2C_COMPAT is not set
-# CONFIG_I2C_HELPER_AUTO is not set
-CONFIG_I2C_OMAP=y
-CONFIG_SPI=y
-CONFIG_SPI_OMAP24XX=y
-# CONFIG_HWMON is not set
-CONFIG_MENELAUS=y
-CONFIG_REGULATOR=y
-# CONFIG_VGA_CONSOLE is not set
-# CONFIG_HID_SUPPORT is not set
-CONFIG_USB=y
-CONFIG_USB_DEBUG=y
-CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
-CONFIG_USB_DEVICEFS=y
-CONFIG_USB_SUSPEND=y
-# CONFIG_USB_OTG_WHITELIST is not set
-CONFIG_USB_MUSB_HDRC=y
-CONFIG_USB_MUSB_OTG=y
-CONFIG_USB_GADGET_MUSB_HDRC=y
-# CONFIG_MUSB_PIO_ONLY is not set
-CONFIG_USB_MUSB_DEBUG=y
-CONFIG_USB_GADGET=y
-CONFIG_USB_GADGET_DEBUG=y
-CONFIG_USB_GADGET_DEBUG_FILES=y
-CONFIG_USB_ETH=m
-CONFIG_USB_ETH_EEM=y
-CONFIG_MMC=y
-CONFIG_MMC_OMAP=y
-CONFIG_EXT3_FS=y
-CONFIG_INOTIFY=y
-CONFIG_VFAT_FS=y
-CONFIG_TMPFS=y
-CONFIG_JFFS2_FS=y
-CONFIG_JFFS2_SUMMARY=y
-CONFIG_JFFS2_COMPRESSION_OPTIONS=y
-CONFIG_JFFS2_LZO=y
-CONFIG_PRINTK_TIME=y
-CONFIG_DEBUG_KERNEL=y
-CONFIG_DEBUG_INFO=y
-# CONFIG_RCU_CPU_STALL_DETECTOR is not set
-CONFIG_DEBUG_USER=y
-CONFIG_DEBUG_ERRORS=y
-CONFIG_CRC_CCITT=y
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 5/9] Remove unused omap generic 2420 default configuration
  2010-09-13 15:13 Remove unused default configurations Vincent Sanders
                   ` (3 preceding siblings ...)
  2010-09-13 15:13 ` [PATCH 4/9] Remove unused n8x0 " Vincent Sanders
@ 2010-09-13 15:13 ` Vincent Sanders
  2010-09-13 15:13 ` [PATCH 6/9] Remove unused pxa3xx " Vincent Sanders
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 23+ messages in thread
From: Vincent Sanders @ 2010-09-13 15:13 UTC (permalink / raw)
  To: linux-arm-kernel

From: Vincent Sanders <vince@simtec.co.uk>

The omap_generic_2420 default configuration has not built throughout
the 2.6.36 series (since 2.6.35-git1). The link has failed with

arch/arm/plat-omap/built-in.o: In function `newled_init':
/var/tmp/kernel-orig/arch/arm/plat-omap/debug-leds.c:249: undefined reference to `led_classdev_register'

In addition there is a modpost warning about six section mismatches

This configuration appers to be unused by the maintainer so remove it.

Signed-off-by: Vincent Sanders <vince@kyllikki.org>
---
 arch/arm/configs/omap_generic_2420_defconfig |   37 --------------------------
 1 files changed, 0 insertions(+), 37 deletions(-)
 delete mode 100644 arch/arm/configs/omap_generic_2420_defconfig

diff --git a/arch/arm/configs/omap_generic_2420_defconfig b/arch/arm/configs/omap_generic_2420_defconfig
deleted file mode 100644
index ac08e51..0000000
--- a/arch/arm/configs/omap_generic_2420_defconfig
+++ /dev/null
@@ -1,37 +0,0 @@
-CONFIG_EXPERIMENTAL=y
-CONFIG_SYSVIPC=y
-CONFIG_LOG_BUF_SHIFT=14
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_MODULES=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_BLK_DEV_BSG is not set
-CONFIG_ARCH_OMAP=y
-CONFIG_ARCH_OMAP2=y
-# CONFIG_OMAP_MUX is not set
-CONFIG_MACH_OMAP_GENERIC=y
-CONFIG_ARCH_OMAP2420=y
-CONFIG_LEDS=y
-CONFIG_ZBOOT_ROM_TEXT=0x10C08000
-CONFIG_ZBOOT_ROM_BSS=0x10200000
-CONFIG_FPE_NWFPE=y
-CONFIG_BLK_DEV_RAM=y
-CONFIG_INPUT_EVDEV=y
-# CONFIG_INPUT_KEYBOARD is not set
-# CONFIG_INPUT_MOUSE is not set
-CONFIG_SERIAL_8250=y
-CONFIG_SERIAL_8250_CONSOLE=y
-# CONFIG_LEGACY_PTYS is not set
-CONFIG_WATCHDOG=y
-CONFIG_WATCHDOG_NOWAYOUT=y
-CONFIG_VIDEO_OUTPUT_CONTROL=m
-# CONFIG_VGA_CONSOLE is not set
-CONFIG_EXT2_FS=y
-CONFIG_EXT2_FS_XATTR=y
-CONFIG_INOTIFY=y
-CONFIG_ROMFS_FS=y
-CONFIG_DEBUG_KERNEL=y
-CONFIG_DEBUG_INFO=y
-CONFIG_DEBUG_USER=y
-CONFIG_DEBUG_ERRORS=y
-CONFIG_DEBUG_LL=y
-CONFIG_CRC_CCITT=y
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 6/9] Remove unused pxa3xx default configuration
  2010-09-13 15:13 Remove unused default configurations Vincent Sanders
                   ` (4 preceding siblings ...)
  2010-09-13 15:13 ` [PATCH 5/9] Remove unused omap generic 2420 " Vincent Sanders
@ 2010-09-13 15:13 ` Vincent Sanders
  2010-09-14  6:15   ` Haojian Zhuang
  2010-09-14  6:51   ` Eric Miao
  2010-09-13 15:13 ` [PATCH 7/9] Remove unused qil-a9260 " Vincent Sanders
                   ` (4 subsequent siblings)
  10 siblings, 2 replies; 23+ messages in thread
From: Vincent Sanders @ 2010-09-13 15:13 UTC (permalink / raw)
  To: linux-arm-kernel

From: Vincent Sanders <vince@simtec.co.uk>

The pxa3xx default configuration has not built throughout the 2.6.36
series (since 2.6.35-git1). The kernel link has failed with

fs/built-in.o: In function `nfs_callback_authenticate':
compr_lzo.c:(.text+0x817bc): undefined reference to `svc_gss_principal'

This configuration appers to be unused by the maintainer so remove it.

Signed-off-by: Vincent Sanders <vince@kyllikki.org>
---
 arch/arm/configs/pxa3xx_defconfig |  134 -------------------------------------
 1 files changed, 0 insertions(+), 134 deletions(-)
 delete mode 100644 arch/arm/configs/pxa3xx_defconfig

diff --git a/arch/arm/configs/pxa3xx_defconfig b/arch/arm/configs/pxa3xx_defconfig
deleted file mode 100644
index 1677a06..0000000
--- a/arch/arm/configs/pxa3xx_defconfig
+++ /dev/null
@@ -1,134 +0,0 @@
-CONFIG_EXPERIMENTAL=y
-CONFIG_SYSVIPC=y
-CONFIG_LOG_BUF_SHIFT=18
-CONFIG_SYSFS_DEPRECATED_V2=y
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_KALLSYMS_ALL=y
-CONFIG_SLAB=y
-CONFIG_MODULES=y
-# CONFIG_BLK_DEV_BSG is not set
-CONFIG_ARCH_PXA=y
-CONFIG_MACH_LITTLETON=y
-CONFIG_MACH_TAVOREVB=y
-CONFIG_MACH_SAAR=y
-CONFIG_PREEMPT=y
-CONFIG_AEABI=y
-CONFIG_ZBOOT_ROM_TEXT=0x0
-CONFIG_ZBOOT_ROM_BSS=0x0
-CONFIG_CMDLINE="root=/dev/nfs rootfstype=nfs nfsroot=192.168.1.100:/nfsroot/ ip=192.168.1.101:192.168.1.100::255.255.255.0::eth0:on console=ttyS0,115200 mem=64M debug"
-CONFIG_FPE_NWFPE=y
-CONFIG_NET=y
-CONFIG_PACKET=y
-CONFIG_UNIX=y
-CONFIG_INET=y
-CONFIG_IP_PNP=y
-# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
-# CONFIG_INET_XFRM_MODE_TUNNEL is not set
-# CONFIG_INET_XFRM_MODE_BEET is not set
-# CONFIG_INET_LRO is not set
-# CONFIG_INET_DIAG is not set
-# CONFIG_IPV6 is not set
-CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
-# CONFIG_STANDALONE is not set
-# CONFIG_PREVENT_FIRMWARE_BUILD is not set
-CONFIG_MTD=y
-CONFIG_MTD_CONCAT=y
-CONFIG_MTD_CHAR=y
-CONFIG_MTD_BLOCK=y
-CONFIG_MTD_NAND=y
-CONFIG_MTD_NAND_VERIFY_WRITE=y
-CONFIG_MTD_NAND_PXA3xx=y
-CONFIG_MTD_NAND_PXA3xx_BUILTIN=y
-CONFIG_MTD_ONENAND=y
-CONFIG_MTD_ONENAND_VERIFY_WRITE=y
-CONFIG_MTD_ONENAND_GENERIC=y
-CONFIG_BLK_DEV_LOOP=y
-CONFIG_BLK_DEV_RAM=y
-# CONFIG_MISC_DEVICES is not set
-CONFIG_NETDEVICES=y
-CONFIG_NET_ETHERNET=y
-CONFIG_SMC91X=y
-# CONFIG_NETDEV_1000 is not set
-# CONFIG_NETDEV_10000 is not set
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
-# CONFIG_KEYBOARD_ATKBD is not set
-CONFIG_KEYBOARD_GPIO=y
-CONFIG_KEYBOARD_PXA27x=y
-CONFIG_KEYBOARD_PXA930_ROTARY=y
-CONFIG_MOUSE_PXA930_TRKBALL=y
-CONFIG_INPUT_TOUCHSCREEN=y
-CONFIG_SERIAL_PXA=y
-CONFIG_SERIAL_PXA_CONSOLE=y
-# CONFIG_LEGACY_PTYS is not set
-# CONFIG_HW_RANDOM is not set
-CONFIG_I2C=y
-# CONFIG_I2C_HELPER_AUTO is not set
-CONFIG_I2C_PXA=y
-CONFIG_SPI=y
-CONFIG_SPI_PXA2XX=y
-CONFIG_GPIO_MAX732X=y
-CONFIG_GPIO_PCA953X=y
-CONFIG_GPIO_PCF857X=y
-CONFIG_GPIO_MAX7301=y
-CONFIG_POWER_SUPPLY=y
-CONFIG_POWER_SUPPLY_DEBUG=y
-CONFIG_PDA_POWER=y
-CONFIG_BATTERY_DA9030=y
-# CONFIG_HWMON is not set
-CONFIG_PMIC_DA903X=y
-CONFIG_REGULATOR=y
-CONFIG_REGULATOR_DEBUG=y
-CONFIG_REGULATOR_VIRTUAL_CONSUMER=y
-CONFIG_REGULATOR_DA903X=y
-CONFIG_FB=y
-CONFIG_FB_PXA=y
-CONFIG_BACKLIGHT_LCD_SUPPORT=y
-CONFIG_LCD_CLASS_DEVICE=y
-CONFIG_LCD_TDO24M=y
-CONFIG_BACKLIGHT_CLASS_DEVICE=y
-# CONFIG_BACKLIGHT_GENERIC is not set
-CONFIG_BACKLIGHT_DA903X=y
-# CONFIG_VGA_CONSOLE is not set
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
-CONFIG_FONTS=y
-CONFIG_FONT_6x11=y
-CONFIG_LOGO=y
-# CONFIG_HID_SUPPORT is not set
-# CONFIG_USB_SUPPORT is not set
-CONFIG_MMC=y
-CONFIG_MMC_PXA=y
-CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=m
-CONFIG_LEDS_GPIO=m
-CONFIG_LEDS_DA903X=m
-CONFIG_LEDS_TRIGGERS=y
-CONFIG_LEDS_TRIGGER_TIMER=m
-CONFIG_LEDS_TRIGGER_HEARTBEAT=m
-CONFIG_LEDS_TRIGGER_BACKLIGHT=m
-CONFIG_LEDS_TRIGGER_GPIO=m
-CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
-CONFIG_JFFS2_FS=y
-CONFIG_JFFS2_FS_WBUF_VERIFY=y
-CONFIG_JFFS2_COMPRESSION_OPTIONS=y
-CONFIG_JFFS2_LZO=y
-CONFIG_JFFS2_RUBIN=y
-CONFIG_NFS_FS=y
-CONFIG_NFS_V3=y
-CONFIG_NFS_V3_ACL=y
-CONFIG_NFS_V4=y
-CONFIG_ROOT_NFS=y
-CONFIG_NLS=y
-CONFIG_PRINTK_TIME=y
-CONFIG_MAGIC_SYSRQ=y
-CONFIG_DEBUG_KERNEL=y
-CONFIG_DEBUG_SHIRQ=y
-CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=y
-# CONFIG_SCHED_DEBUG is not set
-CONFIG_DEBUG_SPINLOCK=y
-CONFIG_DEBUG_SPINLOCK_SLEEP=y
-# CONFIG_RCU_CPU_STALL_DETECTOR is not set
-# CONFIG_FTRACE is not set
-CONFIG_DEBUG_USER=y
-# CONFIG_CRYPTO_ANSI_CPRNG is not set
-# CONFIG_CRYPTO_HW is not set
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 7/9] Remove unused qil-a9260 default configuration
  2010-09-13 15:13 Remove unused default configurations Vincent Sanders
                   ` (5 preceding siblings ...)
  2010-09-13 15:13 ` [PATCH 6/9] Remove unused pxa3xx " Vincent Sanders
@ 2010-09-13 15:13 ` Vincent Sanders
  2010-09-13 15:13 ` [PATCH 8/9] Remove unused usb-a9260 " Vincent Sanders
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 23+ messages in thread
From: Vincent Sanders @ 2010-09-13 15:13 UTC (permalink / raw)
  To: linux-arm-kernel

From: Vincent Sanders <vince@simtec.co.uk>

The qil-a9260 default configuration has not built throughout the
2.6.36 series (since 2.6.35-git1). The kernel link has failed with

fs/built-in.o: In function `nfs_callback_authenticate':
compr_zlib.c:(.text+0x8cf18): undefined reference to `svc_gss_principal'

This configuration appers to be unused by the maintainer so remove it.

Signed-off-by: Vincent Sanders <vince@kyllikki.org>
---
 arch/arm/configs/qil-a9260_defconfig |  115 ----------------------------------
 1 files changed, 0 insertions(+), 115 deletions(-)
 delete mode 100644 arch/arm/configs/qil-a9260_defconfig

diff --git a/arch/arm/configs/qil-a9260_defconfig b/arch/arm/configs/qil-a9260_defconfig
deleted file mode 100644
index 9160f3b..0000000
--- a/arch/arm/configs/qil-a9260_defconfig
+++ /dev/null
@@ -1,115 +0,0 @@
-CONFIG_EXPERIMENTAL=y
-# CONFIG_LOCALVERSION_AUTO is not set
-# CONFIG_SWAP is not set
-CONFIG_SYSVIPC=y
-CONFIG_LOG_BUF_SHIFT=14
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_SLAB=y
-CONFIG_MODULES=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_BLK_DEV_BSG is not set
-# CONFIG_IOSCHED_DEADLINE is not set
-# CONFIG_IOSCHED_CFQ is not set
-CONFIG_ARCH_AT91=y
-CONFIG_ARCH_AT91SAM9260=y
-CONFIG_MACH_QIL_A9260=y
-CONFIG_AT91_SLOW_CLOCK=y
-CONFIG_AT91_EARLY_USART0=y
-# CONFIG_ARM_THUMB is not set
-CONFIG_AEABI=y
-CONFIG_ZBOOT_ROM_TEXT=0x0
-CONFIG_ZBOOT_ROM_BSS=0x0
-CONFIG_CMDLINE="mem=64M console=ttyS1,115200"
-CONFIG_FPE_NWFPE=y
-CONFIG_PM=y
-CONFIG_NET=y
-CONFIG_PACKET=y
-CONFIG_UNIX=y
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_ADVANCED_ROUTER=y
-CONFIG_IP_ROUTE_VERBOSE=y
-CONFIG_IP_PNP=y
-CONFIG_IP_PNP_BOOTP=y
-CONFIG_IP_PNP_RARP=y
-CONFIG_IP_MROUTE=y
-CONFIG_IP_PIMSM_V1=y
-CONFIG_IP_PIMSM_V2=y
-# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
-# CONFIG_INET_XFRM_MODE_TUNNEL is not set
-# CONFIG_INET_XFRM_MODE_BEET is not set
-# CONFIG_INET_LRO is not set
-# CONFIG_INET_DIAG is not set
-# CONFIG_IPV6 is not set
-CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
-CONFIG_MTD=y
-CONFIG_MTD_PARTITIONS=y
-CONFIG_MTD_CMDLINE_PARTS=y
-CONFIG_MTD_CHAR=y
-CONFIG_MTD_BLOCK=y
-CONFIG_MTD_DATAFLASH=y
-CONFIG_MTD_NAND=y
-CONFIG_MTD_NAND_ATMEL=y
-CONFIG_MTD_NAND_ATMEL_ECC_SOFT=y
-CONFIG_BLK_DEV_LOOP=y
-# CONFIG_MISC_DEVICES is not set
-CONFIG_SCSI=y
-CONFIG_BLK_DEV_SD=y
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_NETDEVICES=y
-CONFIG_NET_ETHERNET=y
-CONFIG_MII=y
-CONFIG_MACB=y
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
-CONFIG_INPUT_EVDEV=y
-CONFIG_INPUT_EVBUG=y
-# CONFIG_KEYBOARD_ATKBD is not set
-CONFIG_KEYBOARD_GPIO=y
-# CONFIG_INPUT_MOUSE is not set
-# CONFIG_SERIO is not set
-CONFIG_SERIAL_ATMEL=y
-CONFIG_SERIAL_ATMEL_CONSOLE=y
-CONFIG_HW_RANDOM=y
-CONFIG_I2C=y
-CONFIG_I2C_CHARDEV=y
-CONFIG_SPI=y
-CONFIG_SPI_ATMEL=y
-# CONFIG_HWMON is not set
-CONFIG_WATCHDOG=y
-CONFIG_WATCHDOG_NOWAYOUT=y
-# CONFIG_VGA_CONSOLE is not set
-# CONFIG_USB_HID is not set
-CONFIG_USB=y
-CONFIG_USB_DEVICEFS=y
-CONFIG_USB_MON=y
-CONFIG_USB_OHCI_HCD=y
-CONFIG_USB_STORAGE=y
-CONFIG_USB_GADGET=y
-CONFIG_USB_ETH=m
-CONFIG_MMC=y
-CONFIG_MMC_AT91=m
-CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=y
-CONFIG_LEDS_GPIO=y
-CONFIG_LEDS_TRIGGERS=y
-CONFIG_LEDS_TRIGGER_HEARTBEAT=y
-CONFIG_RTC_CLASS=y
-CONFIG_RTC_DRV_M41T94=y
-CONFIG_EXT2_FS=y
-CONFIG_INOTIFY=y
-CONFIG_FUSE_FS=m
-CONFIG_VFAT_FS=y
-CONFIG_TMPFS=y
-CONFIG_JFFS2_FS=y
-CONFIG_NFS_FS=y
-CONFIG_NFS_V3=y
-CONFIG_NFS_V3_ACL=y
-CONFIG_NFS_V4=y
-CONFIG_ROOT_NFS=y
-CONFIG_NLS_CODEPAGE_437=y
-CONFIG_NLS_CODEPAGE_850=y
-CONFIG_NLS_ISO8859_1=y
-CONFIG_DEBUG_KERNEL=y
-CONFIG_DEBUG_USER=y
-CONFIG_DEBUG_LL=y
-# CONFIG_CRYPTO_HW is not set
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 8/9] Remove unused usb-a9260 default configuration
  2010-09-13 15:13 Remove unused default configurations Vincent Sanders
                   ` (6 preceding siblings ...)
  2010-09-13 15:13 ` [PATCH 7/9] Remove unused qil-a9260 " Vincent Sanders
@ 2010-09-13 15:13 ` Vincent Sanders
  2010-09-13 15:13 ` [PATCH 9/9] Remove unused usb-a9263 " Vincent Sanders
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 23+ messages in thread
From: Vincent Sanders @ 2010-09-13 15:13 UTC (permalink / raw)
  To: linux-arm-kernel

From: Vincent Sanders <vince@simtec.co.uk>

The usb-a9260 default configuration has not built throughout the
2.6.36 series (since 2.6.35-git1). The kernel link has failed with

fs/built-in.o: In function `nfs_callback_authenticate':
compr_zlib.c:(.text+0x8cf18): undefined reference to `svc_gss_principal'

This configuration appers to be unused by the maintainer so remove it.

Signed-off-by: Vincent Sanders <vince@kyllikki.org>
---
 arch/arm/configs/usb-a9260_defconfig |  106 ----------------------------------
 1 files changed, 0 insertions(+), 106 deletions(-)
 delete mode 100644 arch/arm/configs/usb-a9260_defconfig

diff --git a/arch/arm/configs/usb-a9260_defconfig b/arch/arm/configs/usb-a9260_defconfig
deleted file mode 100644
index 2e39f38..0000000
--- a/arch/arm/configs/usb-a9260_defconfig
+++ /dev/null
@@ -1,106 +0,0 @@
-CONFIG_EXPERIMENTAL=y
-# CONFIG_LOCALVERSION_AUTO is not set
-# CONFIG_SWAP is not set
-CONFIG_SYSVIPC=y
-CONFIG_LOG_BUF_SHIFT=14
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_SLAB=y
-CONFIG_MODULES=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_BLK_DEV_BSG is not set
-# CONFIG_IOSCHED_DEADLINE is not set
-# CONFIG_IOSCHED_CFQ is not set
-CONFIG_ARCH_AT91=y
-CONFIG_ARCH_AT91SAM9260=y
-CONFIG_MACH_USB_A9260=y
-CONFIG_AT91_SLOW_CLOCK=y
-# CONFIG_ARM_THUMB is not set
-CONFIG_AEABI=y
-CONFIG_ZBOOT_ROM_TEXT=0x0
-CONFIG_ZBOOT_ROM_BSS=0x0
-CONFIG_CMDLINE="mem=64M console=ttyS0,115200"
-CONFIG_FPE_NWFPE=y
-CONFIG_PM=y
-CONFIG_NET=y
-CONFIG_PACKET=y
-CONFIG_UNIX=y
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_ADVANCED_ROUTER=y
-CONFIG_IP_ROUTE_VERBOSE=y
-CONFIG_IP_PNP=y
-CONFIG_IP_PNP_BOOTP=y
-CONFIG_IP_PNP_RARP=y
-CONFIG_IP_MROUTE=y
-CONFIG_IP_PIMSM_V1=y
-CONFIG_IP_PIMSM_V2=y
-# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
-# CONFIG_INET_XFRM_MODE_TUNNEL is not set
-# CONFIG_INET_XFRM_MODE_BEET is not set
-# CONFIG_INET_LRO is not set
-# CONFIG_INET_DIAG is not set
-# CONFIG_IPV6 is not set
-CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
-CONFIG_MTD=y
-CONFIG_MTD_PARTITIONS=y
-CONFIG_MTD_CMDLINE_PARTS=y
-CONFIG_MTD_CHAR=y
-CONFIG_MTD_BLOCK=y
-CONFIG_MTD_DATAFLASH=y
-CONFIG_MTD_NAND=y
-CONFIG_MTD_NAND_ATMEL=y
-CONFIG_MTD_NAND_ATMEL_ECC_SOFT=y
-CONFIG_BLK_DEV_LOOP=y
-# CONFIG_MISC_DEVICES is not set
-CONFIG_SCSI=y
-CONFIG_BLK_DEV_SD=y
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_NETDEVICES=y
-CONFIG_NET_ETHERNET=y
-CONFIG_MII=y
-CONFIG_MACB=y
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
-CONFIG_INPUT_EVDEV=y
-CONFIG_INPUT_EVBUG=y
-# CONFIG_KEYBOARD_ATKBD is not set
-CONFIG_KEYBOARD_GPIO=y
-# CONFIG_INPUT_MOUSE is not set
-# CONFIG_SERIO is not set
-CONFIG_SERIAL_ATMEL=y
-CONFIG_SERIAL_ATMEL_CONSOLE=y
-CONFIG_HW_RANDOM=y
-CONFIG_SPI=y
-CONFIG_SPI_ATMEL=y
-# CONFIG_HWMON is not set
-# CONFIG_VGA_CONSOLE is not set
-# CONFIG_USB_HID is not set
-CONFIG_USB=y
-CONFIG_USB_DEVICEFS=y
-CONFIG_USB_MON=y
-CONFIG_USB_OHCI_HCD=y
-CONFIG_USB_STORAGE=y
-CONFIG_USB_GADGET=y
-CONFIG_USB_ETH=m
-CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=y
-CONFIG_LEDS_GPIO=y
-CONFIG_LEDS_TRIGGERS=y
-CONFIG_LEDS_TRIGGER_HEARTBEAT=y
-CONFIG_EXT2_FS=y
-CONFIG_INOTIFY=y
-CONFIG_FUSE_FS=m
-CONFIG_VFAT_FS=y
-CONFIG_TMPFS=y
-CONFIG_JFFS2_FS=y
-CONFIG_NFS_FS=y
-CONFIG_NFS_V3=y
-CONFIG_NFS_V3_ACL=y
-CONFIG_NFS_V4=y
-CONFIG_ROOT_NFS=y
-CONFIG_NLS_CODEPAGE_437=y
-CONFIG_NLS_CODEPAGE_850=y
-CONFIG_NLS_ISO8859_1=y
-CONFIG_DEBUG_KERNEL=y
-CONFIG_DEBUG_USER=y
-CONFIG_DEBUG_LL=y
-# CONFIG_CRYPTO_HW is not set
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 9/9] Remove unused usb-a9263 default configuration
  2010-09-13 15:13 Remove unused default configurations Vincent Sanders
                   ` (7 preceding siblings ...)
  2010-09-13 15:13 ` [PATCH 8/9] Remove unused usb-a9260 " Vincent Sanders
@ 2010-09-13 15:13 ` Vincent Sanders
  2010-09-13 15:27   ` Jean-Christophe PLAGNIOL-VILLARD
                     ` (2 more replies)
  2010-09-13 17:24 ` Remove unused default configurations Daniel Walker
  2010-10-06  7:46 ` Amit Kucheria
  10 siblings, 3 replies; 23+ messages in thread
From: Vincent Sanders @ 2010-09-13 15:13 UTC (permalink / raw)
  To: linux-arm-kernel

From: Vincent Sanders <vince@simtec.co.uk>

The usb-a9263 default configuration has not built throughout the
2.6.36 series (since 2.6.35-git1). The kernel link has failed with

fs/built-in.o: In function `nfs_callback_authenticate':
compr_zlib.c:(.text+0x8cf18): undefined reference to `svc_gss_principal'

This configuration appers to be unused by the maintainer so remove it.

Signed-off-by: Vincent Sanders <vince@kyllikki.org>
---
 arch/arm/configs/usb-a9263_defconfig |  106 ----------------------------------
 1 files changed, 0 insertions(+), 106 deletions(-)
 delete mode 100644 arch/arm/configs/usb-a9263_defconfig

diff --git a/arch/arm/configs/usb-a9263_defconfig b/arch/arm/configs/usb-a9263_defconfig
deleted file mode 100644
index ee82d09..0000000
--- a/arch/arm/configs/usb-a9263_defconfig
+++ /dev/null
@@ -1,106 +0,0 @@
-CONFIG_EXPERIMENTAL=y
-# CONFIG_LOCALVERSION_AUTO is not set
-# CONFIG_SWAP is not set
-CONFIG_SYSVIPC=y
-CONFIG_LOG_BUF_SHIFT=14
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_SLAB=y
-CONFIG_MODULES=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_BLK_DEV_BSG is not set
-# CONFIG_IOSCHED_DEADLINE is not set
-# CONFIG_IOSCHED_CFQ is not set
-CONFIG_ARCH_AT91=y
-CONFIG_ARCH_AT91SAM9263=y
-CONFIG_MACH_USB_A9263=y
-CONFIG_AT91_SLOW_CLOCK=y
-# CONFIG_ARM_THUMB is not set
-CONFIG_AEABI=y
-CONFIG_ZBOOT_ROM_TEXT=0x0
-CONFIG_ZBOOT_ROM_BSS=0x0
-CONFIG_CMDLINE="mem=64M console=ttyS0,115200"
-CONFIG_FPE_NWFPE=y
-CONFIG_PM=y
-CONFIG_NET=y
-CONFIG_PACKET=y
-CONFIG_UNIX=y
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_ADVANCED_ROUTER=y
-CONFIG_IP_ROUTE_VERBOSE=y
-CONFIG_IP_PNP=y
-CONFIG_IP_PNP_BOOTP=y
-CONFIG_IP_PNP_RARP=y
-CONFIG_IP_MROUTE=y
-CONFIG_IP_PIMSM_V1=y
-CONFIG_IP_PIMSM_V2=y
-# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
-# CONFIG_INET_XFRM_MODE_TUNNEL is not set
-# CONFIG_INET_XFRM_MODE_BEET is not set
-# CONFIG_INET_LRO is not set
-# CONFIG_INET_DIAG is not set
-# CONFIG_IPV6 is not set
-CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
-CONFIG_MTD=y
-CONFIG_MTD_PARTITIONS=y
-CONFIG_MTD_CMDLINE_PARTS=y
-CONFIG_MTD_CHAR=y
-CONFIG_MTD_BLOCK=y
-CONFIG_MTD_DATAFLASH=y
-CONFIG_MTD_NAND=y
-CONFIG_MTD_NAND_ATMEL=y
-CONFIG_MTD_NAND_ATMEL_ECC_SOFT=y
-CONFIG_BLK_DEV_LOOP=y
-# CONFIG_MISC_DEVICES is not set
-CONFIG_SCSI=y
-CONFIG_BLK_DEV_SD=y
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_NETDEVICES=y
-CONFIG_NET_ETHERNET=y
-CONFIG_MII=y
-CONFIG_MACB=y
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
-CONFIG_INPUT_EVDEV=y
-CONFIG_INPUT_EVBUG=y
-# CONFIG_KEYBOARD_ATKBD is not set
-CONFIG_KEYBOARD_GPIO=y
-# CONFIG_INPUT_MOUSE is not set
-# CONFIG_SERIO is not set
-CONFIG_SERIAL_ATMEL=y
-CONFIG_SERIAL_ATMEL_CONSOLE=y
-CONFIG_HW_RANDOM=y
-CONFIG_SPI=y
-CONFIG_SPI_ATMEL=y
-# CONFIG_HWMON is not set
-# CONFIG_VGA_CONSOLE is not set
-# CONFIG_USB_HID is not set
-CONFIG_USB=y
-CONFIG_USB_DEVICEFS=y
-CONFIG_USB_MON=y
-CONFIG_USB_OHCI_HCD=y
-CONFIG_USB_STORAGE=y
-CONFIG_USB_GADGET=y
-CONFIG_USB_ETH=m
-CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=y
-CONFIG_LEDS_GPIO=y
-CONFIG_LEDS_TRIGGERS=y
-CONFIG_LEDS_TRIGGER_HEARTBEAT=y
-CONFIG_EXT2_FS=y
-CONFIG_INOTIFY=y
-CONFIG_FUSE_FS=m
-CONFIG_VFAT_FS=y
-CONFIG_TMPFS=y
-CONFIG_JFFS2_FS=y
-CONFIG_NFS_FS=y
-CONFIG_NFS_V3=y
-CONFIG_NFS_V3_ACL=y
-CONFIG_NFS_V4=y
-CONFIG_ROOT_NFS=y
-CONFIG_NLS_CODEPAGE_437=y
-CONFIG_NLS_CODEPAGE_850=y
-CONFIG_NLS_ISO8859_1=y
-CONFIG_DEBUG_KERNEL=y
-CONFIG_DEBUG_USER=y
-CONFIG_DEBUG_LL=y
-# CONFIG_CRYPTO_HW is not set
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [PATCH 9/9] Remove unused usb-a9263 default configuration
  2010-09-13 15:13 ` [PATCH 9/9] Remove unused usb-a9263 " Vincent Sanders
@ 2010-09-13 15:27   ` Jean-Christophe PLAGNIOL-VILLARD
  2010-09-13 15:56     ` Vincent Sanders
  2010-09-13 15:43   ` Thomas Petazzoni
  2010-09-13 18:08   ` avictor.za at gmail.com
  2 siblings, 1 reply; 23+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2010-09-13 15:27 UTC (permalink / raw)
  To: linux-arm-kernel

On 16:13 Mon 13 Sep     , Vincent Sanders wrote:
> From: Vincent Sanders <vince@simtec.co.uk>
> 
> The usb-a9263 default configuration has not built throughout the
> 2.6.36 series (since 2.6.35-git1). The kernel link has failed with
> 
> fs/built-in.o: In function `nfs_callback_authenticate':
> compr_zlib.c:(.text+0x8cf18): undefined reference to `svc_gss_principal'
> 
> This configuration appers to be unused by the maintainer so remove it.
> 
> Signed-off-by: Vincent Sanders <vince@kyllikki.org>
can we at least put in Cc the configs Maintainers before drop any of them?

Best Regards,
J.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [PATCH 9/9] Remove unused usb-a9263 default configuration
  2010-09-13 15:13 ` [PATCH 9/9] Remove unused usb-a9263 " Vincent Sanders
  2010-09-13 15:27   ` Jean-Christophe PLAGNIOL-VILLARD
@ 2010-09-13 15:43   ` Thomas Petazzoni
  2010-09-13 16:00     ` Vincent Sanders
  2010-09-13 18:08   ` avictor.za at gmail.com
  2 siblings, 1 reply; 23+ messages in thread
From: Thomas Petazzoni @ 2010-09-13 15:43 UTC (permalink / raw)
  To: linux-arm-kernel

Hello,

On Mon, 13 Sep 2010 16:13:52 +0100
Vincent Sanders <vince@kyllikki.org> wrote:

> The usb-a9263 default configuration has not built throughout the
> 2.6.36 series (since 2.6.35-git1). The kernel link has failed with

I'm actually using this config quite regularly on the Calao USB A9263
board, so I'd prefer to keep this defconfig in the kernel, unless there
is a more general AT91 defconfig that actually works on this particular
board.

> fs/built-in.o: In function `nfs_callback_authenticate':
> compr_zlib.c:(.text+0x8cf18): undefined reference to `svc_gss_principal'

Would a patch to fix this prevent this defconfig from being removed ?

Thanks,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [PATCH 9/9] Remove unused usb-a9263 default configuration
  2010-09-13 15:27   ` Jean-Christophe PLAGNIOL-VILLARD
@ 2010-09-13 15:56     ` Vincent Sanders
  0 siblings, 0 replies; 23+ messages in thread
From: Vincent Sanders @ 2010-09-13 15:56 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Sep 13, 2010 at 05:27:48PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> On 16:13 Mon 13 Sep     , Vincent Sanders wrote:
> > From: Vincent Sanders <vince@simtec.co.uk>
> > 
> > The usb-a9263 default configuration has not built throughout the
> > 2.6.36 series (since 2.6.35-git1). The kernel link has failed with
> > 
> > fs/built-in.o: In function `nfs_callback_authenticate':
> > compr_zlib.c:(.text+0x8cf18): undefined reference to `svc_gss_principal'
> > 
> > This configuration appers to be unused by the maintainer so remove it.
> > 
> > Signed-off-by: Vincent Sanders <vince@kyllikki.org>
> can we at least put in Cc the configs Maintainers before drop any of them?

I have stopped running around after people individually, if they
cannot be bothered to check their configurations compile I cannot be
bothered to run around after them individually. 

Been chasing after Maintainers for five years and aside from a few
exceptions I ususally get a negative response, time for a new
tactic. The blunt approach seems to work for Linus so I shall try
that.


-- 
Regards Vincent
http://www.kyllikki.org/

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [PATCH 9/9] Remove unused usb-a9263 default configuration
  2010-09-13 15:43   ` Thomas Petazzoni
@ 2010-09-13 16:00     ` Vincent Sanders
  0 siblings, 0 replies; 23+ messages in thread
From: Vincent Sanders @ 2010-09-13 16:00 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Sep 13, 2010 at 05:43:49PM +0200, Thomas Petazzoni wrote:
> Hello,
> 
> On Mon, 13 Sep 2010 16:13:52 +0100
> Vincent Sanders <vince@kyllikki.org> wrote:
> 
> > The usb-a9263 default configuration has not built throughout the
> > 2.6.36 series (since 2.6.35-git1). The kernel link has failed with
> 
> I'm actually using this config quite regularly on the Calao USB A9263
> board, so I'd prefer to keep this defconfig in the kernel, unless there
> is a more general AT91 defconfig that actually works on this particular
> board.
> 
> > fs/built-in.o: In function `nfs_callback_authenticate':
> > compr_zlib.c:(.text+0x8cf18): undefined reference to `svc_gss_principal'
> 
> Would a patch to fix this prevent this defconfig from being removed ?

Of course, if this defconfig is actually used thats great, but as I
point out it has not been built for the entire release so the
maintainer has obviously not checked.

> 
> Thanks,
> 
> Thomas
> -- 
> Thomas Petazzoni, Free Electrons
> Kernel, drivers, real-time and embedded Linux
> development, consulting, training and support.
> http://free-electrons.com
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

-- 
Regards Vincent
http://www.kyllikki.org/

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Remove unused default configurations
  2010-09-13 15:13 Remove unused default configurations Vincent Sanders
                   ` (8 preceding siblings ...)
  2010-09-13 15:13 ` [PATCH 9/9] Remove unused usb-a9263 " Vincent Sanders
@ 2010-09-13 17:24 ` Daniel Walker
  2010-09-14  7:20   ` Eric Miao
  2010-10-06  7:46 ` Amit Kucheria
  10 siblings, 1 reply; 23+ messages in thread
From: Daniel Walker @ 2010-09-13 17:24 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, 2010-09-13 at 16:13 +0100, Vincent Sanders wrote:
> Several default configurations have failed to build for the entire
> 2.6.36 cycle. There are several causes to these faliures. The exact
> issues can be tracked on http://armlinux.simtec.co.uk/kautobuild/
> 
> Obviously the maintainers are not using these default configurations
> because if they were they would have fixed the build issues by now.
> 
> As Linus has made it very clear the number of default configurations
> must be reduced as much as possible I have come up with the following
> series which will remove these nine unused configurations. This will
> reduce our build coverage by ten machines as all but one are a single
> config per machine.

I can't speak for anyone else, but I would prefer to see fixes for the
build issues. ARM has way too many build issues.

Daniel

-- 

Sent by a consultant of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [PATCH 9/9] Remove unused usb-a9263 default configuration
  2010-09-13 15:13 ` [PATCH 9/9] Remove unused usb-a9263 " Vincent Sanders
  2010-09-13 15:27   ` Jean-Christophe PLAGNIOL-VILLARD
  2010-09-13 15:43   ` Thomas Petazzoni
@ 2010-09-13 18:08   ` avictor.za at gmail.com
  2010-09-13 18:24     ` Russell King - ARM Linux
  2 siblings, 1 reply; 23+ messages in thread
From: avictor.za at gmail.com @ 2010-09-13 18:08 UTC (permalink / raw)
  To: linux-arm-kernel

hi,

> fs/built-in.o: In function `nfs_callback_authenticate':
> compr_zlib.c:(.text+0x8cf18): undefined reference to `svc_gss_principal'

That error would seem to imply that NFS support is broken, broken on
ARM, or the KConfig dependencies for NFS are not correct?


Regards,
  Andrew Victor

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [PATCH 9/9] Remove unused usb-a9263 default configuration
  2010-09-13 18:08   ` avictor.za at gmail.com
@ 2010-09-13 18:24     ` Russell King - ARM Linux
  0 siblings, 0 replies; 23+ messages in thread
From: Russell King - ARM Linux @ 2010-09-13 18:24 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Sep 13, 2010 at 08:08:32PM +0200, avictor.za at gmail.com wrote:
> hi,
> 
> > fs/built-in.o: In function `nfs_callback_authenticate':
> > compr_zlib.c:(.text+0x8cf18): undefined reference to `svc_gss_principal'
> 
> That error would seem to imply that NFS support is broken, broken on
> ARM, or the KConfig dependencies for NFS are not correct?

The question is: why has no one noticed and/or complained to the NFS
people about this - or if they have, can they speak up soon?

If nothing has happened, then Vince is quite correct - if a defconfig
has failed to build for a while and no one has noticed, that's because
it isn't being used.  If it isn't being used, it can be removed.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [PATCH 6/9] Remove unused pxa3xx default configuration
  2010-09-13 15:13 ` [PATCH 6/9] Remove unused pxa3xx " Vincent Sanders
@ 2010-09-14  6:15   ` Haojian Zhuang
  2010-09-14  6:51   ` Eric Miao
  1 sibling, 0 replies; 23+ messages in thread
From: Haojian Zhuang @ 2010-09-14  6:15 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Sep 13, 2010 at 11:13 PM, Vincent Sanders <vince@kyllikki.org> wrote:
> From: Vincent Sanders <vince@simtec.co.uk>
>
> The pxa3xx default configuration has not built throughout the 2.6.36
> series (since 2.6.35-git1). The kernel link has failed with
>
> fs/built-in.o: In function `nfs_callback_authenticate':
> compr_lzo.c:(.text+0x817bc): undefined reference to `svc_gss_principal'
>
> This configuration appers to be unused by the maintainer so remove it.
>
> Signed-off-by: Vincent Sanders <vince@kyllikki.org>
> ---

Hi Vincent,

Thanks for your reporting on this build failure. Please hold on this
patch. I can fix it.

Best Regards
Haojian

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [PATCH 6/9] Remove unused pxa3xx default configuration
  2010-09-13 15:13 ` [PATCH 6/9] Remove unused pxa3xx " Vincent Sanders
  2010-09-14  6:15   ` Haojian Zhuang
@ 2010-09-14  6:51   ` Eric Miao
  1 sibling, 0 replies; 23+ messages in thread
From: Eric Miao @ 2010-09-14  6:51 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Sep 13, 2010 at 11:13 PM, Vincent Sanders <vince@kyllikki.org> wrote:
> From: Vincent Sanders <vince@simtec.co.uk>
>
> The pxa3xx default configuration has not built throughout the 2.6.36
> series (since 2.6.35-git1). The kernel link has failed with
>
> fs/built-in.o: In function `nfs_callback_authenticate':
> compr_lzo.c:(.text+0x817bc): undefined reference to `svc_gss_principal'
>
> This configuration appers to be unused by the maintainer so remove it.

This is incorrect and I'm still using that.

>
> Signed-off-by: Vincent Sanders <vince@kyllikki.org>
> ---
> ?arch/arm/configs/pxa3xx_defconfig | ?134 -------------------------------------

This is not necessary and is not a correct fix. (this is even not a fix, is it?)

Uwe should already have a proper fix for this and supposedly get upstreamed.

> ?1 files changed, 0 insertions(+), 134 deletions(-)
> ?delete mode 100644 arch/arm/configs/pxa3xx_defconfig
>
> diff --git a/arch/arm/configs/pxa3xx_defconfig b/arch/arm/configs/pxa3xx_defconfig
> deleted file mode 100644
> index 1677a06..0000000
> --- a/arch/arm/configs/pxa3xx_defconfig
> +++ /dev/null
> @@ -1,134 +0,0 @@
> -CONFIG_EXPERIMENTAL=y
> -CONFIG_SYSVIPC=y
> -CONFIG_LOG_BUF_SHIFT=18
> -CONFIG_SYSFS_DEPRECATED_V2=y
> -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
> -CONFIG_KALLSYMS_ALL=y
> -CONFIG_SLAB=y
> -CONFIG_MODULES=y
> -# CONFIG_BLK_DEV_BSG is not set
> -CONFIG_ARCH_PXA=y
> -CONFIG_MACH_LITTLETON=y
> -CONFIG_MACH_TAVOREVB=y
> -CONFIG_MACH_SAAR=y
> -CONFIG_PREEMPT=y
> -CONFIG_AEABI=y
> -CONFIG_ZBOOT_ROM_TEXT=0x0
> -CONFIG_ZBOOT_ROM_BSS=0x0
> -CONFIG_CMDLINE="root=/dev/nfs rootfstype=nfs nfsroot=192.168.1.100:/nfsroot/ ip=192.168.1.101:192.168.1.100::255.255.255.0::eth0:on console=ttyS0,115200 mem=64M debug"
> -CONFIG_FPE_NWFPE=y
> -CONFIG_NET=y
> -CONFIG_PACKET=y
> -CONFIG_UNIX=y
> -CONFIG_INET=y
> -CONFIG_IP_PNP=y
> -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
> -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
> -# CONFIG_INET_XFRM_MODE_BEET is not set
> -# CONFIG_INET_LRO is not set
> -# CONFIG_INET_DIAG is not set
> -# CONFIG_IPV6 is not set
> -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
> -# CONFIG_STANDALONE is not set
> -# CONFIG_PREVENT_FIRMWARE_BUILD is not set
> -CONFIG_MTD=y
> -CONFIG_MTD_CONCAT=y
> -CONFIG_MTD_CHAR=y
> -CONFIG_MTD_BLOCK=y
> -CONFIG_MTD_NAND=y
> -CONFIG_MTD_NAND_VERIFY_WRITE=y
> -CONFIG_MTD_NAND_PXA3xx=y
> -CONFIG_MTD_NAND_PXA3xx_BUILTIN=y
> -CONFIG_MTD_ONENAND=y
> -CONFIG_MTD_ONENAND_VERIFY_WRITE=y
> -CONFIG_MTD_ONENAND_GENERIC=y
> -CONFIG_BLK_DEV_LOOP=y
> -CONFIG_BLK_DEV_RAM=y
> -# CONFIG_MISC_DEVICES is not set
> -CONFIG_NETDEVICES=y
> -CONFIG_NET_ETHERNET=y
> -CONFIG_SMC91X=y
> -# CONFIG_NETDEV_1000 is not set
> -# CONFIG_NETDEV_10000 is not set
> -# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
> -# CONFIG_KEYBOARD_ATKBD is not set
> -CONFIG_KEYBOARD_GPIO=y
> -CONFIG_KEYBOARD_PXA27x=y
> -CONFIG_KEYBOARD_PXA930_ROTARY=y
> -CONFIG_MOUSE_PXA930_TRKBALL=y
> -CONFIG_INPUT_TOUCHSCREEN=y
> -CONFIG_SERIAL_PXA=y
> -CONFIG_SERIAL_PXA_CONSOLE=y
> -# CONFIG_LEGACY_PTYS is not set
> -# CONFIG_HW_RANDOM is not set
> -CONFIG_I2C=y
> -# CONFIG_I2C_HELPER_AUTO is not set
> -CONFIG_I2C_PXA=y
> -CONFIG_SPI=y
> -CONFIG_SPI_PXA2XX=y
> -CONFIG_GPIO_MAX732X=y
> -CONFIG_GPIO_PCA953X=y
> -CONFIG_GPIO_PCF857X=y
> -CONFIG_GPIO_MAX7301=y
> -CONFIG_POWER_SUPPLY=y
> -CONFIG_POWER_SUPPLY_DEBUG=y
> -CONFIG_PDA_POWER=y
> -CONFIG_BATTERY_DA9030=y
> -# CONFIG_HWMON is not set
> -CONFIG_PMIC_DA903X=y
> -CONFIG_REGULATOR=y
> -CONFIG_REGULATOR_DEBUG=y
> -CONFIG_REGULATOR_VIRTUAL_CONSUMER=y
> -CONFIG_REGULATOR_DA903X=y
> -CONFIG_FB=y
> -CONFIG_FB_PXA=y
> -CONFIG_BACKLIGHT_LCD_SUPPORT=y
> -CONFIG_LCD_CLASS_DEVICE=y
> -CONFIG_LCD_TDO24M=y
> -CONFIG_BACKLIGHT_CLASS_DEVICE=y
> -# CONFIG_BACKLIGHT_GENERIC is not set
> -CONFIG_BACKLIGHT_DA903X=y
> -# CONFIG_VGA_CONSOLE is not set
> -CONFIG_FRAMEBUFFER_CONSOLE=y
> -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
> -CONFIG_FONTS=y
> -CONFIG_FONT_6x11=y
> -CONFIG_LOGO=y
> -# CONFIG_HID_SUPPORT is not set
> -# CONFIG_USB_SUPPORT is not set
> -CONFIG_MMC=y
> -CONFIG_MMC_PXA=y
> -CONFIG_NEW_LEDS=y
> -CONFIG_LEDS_CLASS=m
> -CONFIG_LEDS_GPIO=m
> -CONFIG_LEDS_DA903X=m
> -CONFIG_LEDS_TRIGGERS=y
> -CONFIG_LEDS_TRIGGER_TIMER=m
> -CONFIG_LEDS_TRIGGER_HEARTBEAT=m
> -CONFIG_LEDS_TRIGGER_BACKLIGHT=m
> -CONFIG_LEDS_TRIGGER_GPIO=m
> -CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
> -CONFIG_JFFS2_FS=y
> -CONFIG_JFFS2_FS_WBUF_VERIFY=y
> -CONFIG_JFFS2_COMPRESSION_OPTIONS=y
> -CONFIG_JFFS2_LZO=y
> -CONFIG_JFFS2_RUBIN=y
> -CONFIG_NFS_FS=y
> -CONFIG_NFS_V3=y
> -CONFIG_NFS_V3_ACL=y
> -CONFIG_NFS_V4=y
> -CONFIG_ROOT_NFS=y
> -CONFIG_NLS=y
> -CONFIG_PRINTK_TIME=y
> -CONFIG_MAGIC_SYSRQ=y
> -CONFIG_DEBUG_KERNEL=y
> -CONFIG_DEBUG_SHIRQ=y
> -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=y
> -# CONFIG_SCHED_DEBUG is not set
> -CONFIG_DEBUG_SPINLOCK=y
> -CONFIG_DEBUG_SPINLOCK_SLEEP=y
> -# CONFIG_RCU_CPU_STALL_DETECTOR is not set
> -# CONFIG_FTRACE is not set
> -CONFIG_DEBUG_USER=y
> -# CONFIG_CRYPTO_ANSI_CPRNG is not set
> -# CONFIG_CRYPTO_HW is not set
> --
> 1.7.0.4
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Remove unused default configurations
  2010-09-13 17:24 ` Remove unused default configurations Daniel Walker
@ 2010-09-14  7:20   ` Eric Miao
  0 siblings, 0 replies; 23+ messages in thread
From: Eric Miao @ 2010-09-14  7:20 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Sep 14, 2010 at 1:24 AM, Daniel Walker <dwalker@codeaurora.org> wrote:
> On Mon, 2010-09-13 at 16:13 +0100, Vincent Sanders wrote:
>> Several default configurations have failed to build for the entire
>> 2.6.36 cycle. There are several causes to these faliures. The exact
>> issues can be tracked on http://armlinux.simtec.co.uk/kautobuild/
>>
>> Obviously the maintainers are not using these default configurations
>> because if they were they would have fixed the build issues by now.
>>
>> As Linus has made it very clear the number of default configurations
>> must be reduced as much as possible I have come up with the following
>> series which will remove these nine unused configurations. This will
>> reduce our build coverage by ten machines as all but one are a single
>> config per machine.
>
> I can't speak for anyone else, but I would prefer to see fixes for the
> build issues.

+1

> ARM has way too many build issues.
>
> Daniel
>
> --
>
> Sent by a consultant of the Qualcomm Innovation Center, Inc.
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [PATCH 2/9] Remove unused default configuration
  2010-09-13 15:13 ` [PATCH 2/9] " Vincent Sanders
@ 2010-09-14 14:05   ` Uwe Kleine-König
  0 siblings, 0 replies; 23+ messages in thread
From: Uwe Kleine-König @ 2010-09-14 14:05 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Vincent,

you seem to have missed to add mx1 to the subject.  This nearly made it
fall through my filter.  (It's a "manual" one that picks interesting
mails by looking at the subject.)

On Mon, Sep 13, 2010 at 04:13:45PM +0100, Vincent Sanders wrote:
> From: Vincent Sanders <vince@simtec.co.uk>
> 
> The mx1 default configuration has not built throughout the 2.6.36
> series (since 2.6.35-git1). The link has failed with
> 
> fs/built-in.o: In function `nfs_callback_authenticate':
> compr_zlib.c:(.text+0x7c12c): undefined reference to `svc_gss_principal'
> 
> This configuration appers to be unused by the maintainer so remove it.
NACK.  This build failure was reported with a patch proposal at Aug 25
that is a week after it was pulled into Linus' tree which IMHO is fast
enough considering that the breakage isn't mx1 related at all.  Up to
now it didn't result in a patch that was accepted into Linus' tree
though.

The full discussion can be found at

	http://thread.gmane.org/gmane.linux.kernel/1027380

s/appers/appears/ BTW

Thanks
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Remove unused default configurations
  2010-09-13 15:13 Remove unused default configurations Vincent Sanders
                   ` (9 preceding siblings ...)
  2010-09-13 17:24 ` Remove unused default configurations Daniel Walker
@ 2010-10-06  7:46 ` Amit Kucheria
  2010-10-06 13:03   ` Uwe Kleine-König
  10 siblings, 1 reply; 23+ messages in thread
From: Amit Kucheria @ 2010-10-06  7:46 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Sep 13, 2010 at 6:13 PM, Vincent Sanders <vince@kyllikki.org> wrote:
>
> Several default configurations have failed to build for the entire
> 2.6.36 cycle. There are several causes to these faliures. The exact
> issues can be tracked on http://armlinux.simtec.co.uk/kautobuild/
>
> Obviously the maintainers are not using these default configurations
> because if they were they would have fixed the build issues by now.
>
> As Linus has made it very clear the number of default configurations
> must be reduced as much as possible I have come up with the following
> series which will remove these nine unused configurations. This will
> reduce our build coverage by ten machines as all but one are a single
> config per machine.
>
> ?msm_defconfig ? ? ? ? ? ? ? | ? 72 ------------------
> ?mx1_defconfig ? ? ? ? ? ? ? | ? 90 -----------------------
> ?mx51_defconfig ? ? ? ? ? ? ?| ?171 --------------------------------------------

Could we please keep mx51?

I'll attempt to fix the problems.

> ?n8x0_defconfig ? ? ? ? ? ? ?| ? 94 ------------------------
> ?omap_generic_2420_defconfig | ? 37 ---------
> ?pxa3xx_defconfig ? ? ? ? ? ?| ?134 ----------------------------------
> ?qil-a9260_defconfig ? ? ? ? | ?115 -----------------------------
> ?usb-a9260_defconfig ? ? ? ? | ?106 ---------------------------
> ?usb-a9263_defconfig ? ? ? ? | ?106 ---------------------------
> ?9 files changed, 925 deletions(-)
>

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Remove unused default configurations
  2010-10-06  7:46 ` Amit Kucheria
@ 2010-10-06 13:03   ` Uwe Kleine-König
  0 siblings, 0 replies; 23+ messages in thread
From: Uwe Kleine-König @ 2010-10-06 13:03 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Oct 06, 2010 at 10:46:48AM +0300, Amit Kucheria wrote:
> On Mon, Sep 13, 2010 at 6:13 PM, Vincent Sanders <vince@kyllikki.org> wrote:
> >
> > Several default configurations have failed to build for the entire
> > 2.6.36 cycle. There are several causes to these faliures. The exact
> > issues can be tracked on http://armlinux.simtec.co.uk/kautobuild/
> >
> > Obviously the maintainers are not using these default configurations
> > because if they were they would have fixed the build issues by now.
> >
> > As Linus has made it very clear the number of default configurations
> > must be reduced as much as possible I have come up with the following
> > series which will remove these nine unused configurations. This will
> > reduce our build coverage by ten machines as all but one are a single
> > config per machine.
> >
> > ?msm_defconfig ? ? ? ? ? ? ? | ? 72 ------------------
> > ?mx1_defconfig ? ? ? ? ? ? ? | ? 90 -----------------------
> > ?mx51_defconfig ? ? ? ? ? ? ?| ?171 --------------------------------------------
> 
> Could we please keep mx51?
> 
> I'll attempt to fix the problems.
No need to hurry, the problems are already solved in Linus' and Sascha's
trees. :-)

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2010-10-06 13:03 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-13 15:13 Remove unused default configurations Vincent Sanders
2010-09-13 15:13 ` [PATCH 1/9] Remove unused default configuration Vincent Sanders
2010-09-13 15:13 ` [PATCH 2/9] " Vincent Sanders
2010-09-14 14:05   ` Uwe Kleine-König
2010-09-13 15:13 ` [PATCH 3/9] " Vincent Sanders
2010-09-13 15:13 ` [PATCH 4/9] Remove unused n8x0 " Vincent Sanders
2010-09-13 15:13 ` [PATCH 5/9] Remove unused omap generic 2420 " Vincent Sanders
2010-09-13 15:13 ` [PATCH 6/9] Remove unused pxa3xx " Vincent Sanders
2010-09-14  6:15   ` Haojian Zhuang
2010-09-14  6:51   ` Eric Miao
2010-09-13 15:13 ` [PATCH 7/9] Remove unused qil-a9260 " Vincent Sanders
2010-09-13 15:13 ` [PATCH 8/9] Remove unused usb-a9260 " Vincent Sanders
2010-09-13 15:13 ` [PATCH 9/9] Remove unused usb-a9263 " Vincent Sanders
2010-09-13 15:27   ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-13 15:56     ` Vincent Sanders
2010-09-13 15:43   ` Thomas Petazzoni
2010-09-13 16:00     ` Vincent Sanders
2010-09-13 18:08   ` avictor.za at gmail.com
2010-09-13 18:24     ` Russell King - ARM Linux
2010-09-13 17:24 ` Remove unused default configurations Daniel Walker
2010-09-14  7:20   ` Eric Miao
2010-10-06  7:46 ` Amit Kucheria
2010-10-06 13:03   ` Uwe Kleine-König

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.