[OpenWrt-Devel] [PATCH 3/5] kernel: disbale HAMRADIO in generic config

Sergey Ryazanov ryazanov.s.a at gmail.com
Thu Mar 5 19:58:44 EST 2015


HAMRADIO enabled in all generic configs, but no one platform directly
use related drivers/protocols. This symbol is only used for kmod-ax25
package modules. Furthermore, half of platforms explicitly disables
this symbol, what silently disables build of modules for kmod-ax25
package.

So disable HAMRADIO by-default in generic config, add it to kmod-ax25
package and remove it from platform specific configs.

Signed-off-by: Sergey Ryazanov <ryazanov.s.a at gmail.com>
---
 package/kernel/linux/modules/netsupport.mk | 1 +
 target/linux/at91/config-default           | 1 -
 target/linux/atheros/config-3.14           | 1 -
 target/linux/au1000/config-3.14            | 1 -
 target/linux/au1000/config-3.18            | 1 -
 target/linux/brcm2708/config-3.18          | 1 -
 target/linux/brcm63xx/config-3.14          | 1 -
 target/linux/brcm63xx/config-3.18          | 1 -
 target/linux/cns21xx/config-3.10           | 1 -
 target/linux/cobalt/config-3.14            | 1 -
 target/linux/ep93xx/config-3.10            | 1 -
 target/linux/ep93xx/config-3.14            | 1 -
 target/linux/ep93xx/config-3.18            | 1 -
 target/linux/ep93xx/config-3.8             | 1 -
 target/linux/gemini/config-3.10            | 1 -
 target/linux/generic/config-3.10           | 2 +-
 target/linux/generic/config-3.13           | 2 +-
 target/linux/generic/config-3.14           | 2 +-
 target/linux/generic/config-3.18           | 2 +-
 target/linux/generic/config-3.19           | 2 +-
 target/linux/generic/config-3.8            | 2 +-
 target/linux/generic/config-4.0            | 2 +-
 target/linux/imx6/config-3.14              | 1 -
 target/linux/iop32x/config-3.3             | 1 -
 target/linux/ixp4xx/config-3.14            | 1 -
 target/linux/ixp4xx/config-3.18            | 1 -
 target/linux/kirkwood/config-3.18          | 1 -
 target/linux/malta/config-3.14             | 1 -
 target/linux/malta/config-3.18             | 1 -
 target/linux/malta/config-3.19             | 1 -
 target/linux/mcs814x/config-3.14           | 1 -
 target/linux/mpc52xx/config-3.10           | 1 -
 target/linux/mpc52xx/config-3.14           | 1 -
 target/linux/mpc52xx/config-3.18           | 1 -
 target/linux/mpc52xx/config-3.8            | 1 -
 target/linux/mpc83xx/config-3.10           | 1 -
 target/linux/mpc83xx/config-3.14           | 1 -
 target/linux/mpc83xx/config-3.18           | 1 -
 target/linux/mpc83xx/config-3.8            | 1 -
 target/linux/mpc85xx/config-3.14           | 1 -
 target/linux/mpc85xx/config-3.18           | 1 -
 target/linux/mpc85xx/config-3.19           | 1 -
 target/linux/octeon/config-3.14            | 1 -
 target/linux/octeon/config-3.18            | 1 -
 target/linux/omap24xx/config-3.3           | 1 -
 target/linux/orion/config-default          | 1 -
 target/linux/pxa/config-3.10               | 1 -
 target/linux/pxa/config-3.3                | 1 -
 target/linux/rb532/config-3.14             | 1 -
 target/linux/sparc/config-default          | 1 -
 target/linux/sunxi/config-3.14             | 1 -
 target/linux/sunxi/config-3.18             | 1 -
 target/linux/uml/config/i386               | 1 -
 target/linux/uml/config/x86_64             | 1 -
 target/linux/x86/olpc/config-default       | 1 -
 target/linux/x86/rdc/config-default        | 1 -
 target/linux/xburst/config-3.10            | 1 -
 57 files changed, 8 insertions(+), 56 deletions(-)

diff --git a/package/kernel/linux/modules/netsupport.mk b/package/kernel/linux/modules/netsupport.mk
index a5a6474..c1bd786 100644
--- a/package/kernel/linux/modules/netsupport.mk
+++ b/package/kernel/linux/modules/netsupport.mk
@@ -826,6 +826,7 @@ define KernelPackage/ax25
   SUBMENU:=$(NETWORK_SUPPORT_MENU)
   TITLE:=AX25 support
   KCONFIG:= \
+	CONFIG_HAMRADIO=y \
 	CONFIG_AX25 \
 	CONFIG_MKISS
   FILES:= \
diff --git a/target/linux/at91/config-default b/target/linux/at91/config-default
index 85cacd8..a59e905 100644
--- a/target/linux/at91/config-default
+++ b/target/linux/at91/config-default
@@ -62,7 +62,6 @@ CONFIG_GENERIC_STRNLEN_USER=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/atheros/config-3.14 b/target/linux/atheros/config-3.14
index 6462939..7df31e9 100644
--- a/target/linux/atheros/config-3.14
+++ b/target/linux/atheros/config-3.14
@@ -46,7 +46,6 @@ CONFIG_GPIO_AR2315=y
 CONFIG_GPIO_AR5312=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDWARE_WATCHPOINTS=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/au1000/config-3.14 b/target/linux/au1000/config-3.14
index 570d850..e5a45ed 100644
--- a/target/linux/au1000/config-3.14
+++ b/target/linux/au1000/config-3.14
@@ -43,7 +43,6 @@ CONFIG_GENERIC_PCI_IOMAP=y
 CONFIG_GENERIC_SMP_IDLE_THREAD=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDWARE_WATCHPOINTS=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/au1000/config-3.18 b/target/linux/au1000/config-3.18
index 33c1833..cb2eee2 100644
--- a/target/linux/au1000/config-3.18
+++ b/target/linux/au1000/config-3.18
@@ -43,7 +43,6 @@ CONFIG_GENERIC_PCI_IOMAP=y
 CONFIG_GENERIC_SMP_IDLE_THREAD=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDWARE_WATCHPOINTS=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/brcm2708/config-3.18 b/target/linux/brcm2708/config-3.18
index d700210..e788bb8 100644
--- a/target/linux/brcm2708/config-3.18
+++ b/target/linux/brcm2708/config-3.18
@@ -122,7 +122,6 @@ CONFIG_GENERIC_IRQ_SHOW=y
 CONFIG_GENERIC_PCI_IOMAP=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/brcm63xx/config-3.14 b/target/linux/brcm63xx/config-3.14
index cb15b78..76ece46 100644
--- a/target/linux/brcm63xx/config-3.14
+++ b/target/linux/brcm63xx/config-3.14
@@ -81,7 +81,6 @@ CONFIG_GPIO_BCM63XX=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_GENERIC=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT=y
diff --git a/target/linux/brcm63xx/config-3.18 b/target/linux/brcm63xx/config-3.18
index 168964d..a87e20c 100644
--- a/target/linux/brcm63xx/config-3.18
+++ b/target/linux/brcm63xx/config-3.18
@@ -85,7 +85,6 @@ CONFIG_GPIO_BCM63XX=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_GENERIC=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT_MAP=y
diff --git a/target/linux/cns21xx/config-3.10 b/target/linux/cns21xx/config-3.10
index ffd97b3..0a50f6b 100644
--- a/target/linux/cns21xx/config-3.10
+++ b/target/linux/cns21xx/config-3.10
@@ -59,7 +59,6 @@ CONFIG_GENERIC_STRNLEN_USER=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/cobalt/config-3.14 b/target/linux/cobalt/config-3.14
index 236786c..091c25b 100644
--- a/target/linux/cobalt/config-3.14
+++ b/target/linux/cobalt/config-3.14
@@ -61,7 +61,6 @@ CONFIG_GENERIC_IRQ_SHOW=y
 CONFIG_GENERIC_PCI_IOMAP=y
 CONFIG_GENERIC_SMP_IDLE_THREAD=y
 CONFIG_GPIO_DEVRES=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT=y
diff --git a/target/linux/ep93xx/config-3.10 b/target/linux/ep93xx/config-3.10
index 73b6cd4..313ac0a 100644
--- a/target/linux/ep93xx/config-3.10
+++ b/target/linux/ep93xx/config-3.10
@@ -78,7 +78,6 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_EP93XX=y
 CONFIG_GPIO_GENERIC=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/ep93xx/config-3.14 b/target/linux/ep93xx/config-3.14
index 1b65112..c869a5d 100644
--- a/target/linux/ep93xx/config-3.14
+++ b/target/linux/ep93xx/config-3.14
@@ -83,7 +83,6 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_EP93XX=y
 CONFIG_GPIO_GENERIC=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/ep93xx/config-3.18 b/target/linux/ep93xx/config-3.18
index 1b65112..c869a5d 100644
--- a/target/linux/ep93xx/config-3.18
+++ b/target/linux/ep93xx/config-3.18
@@ -83,7 +83,6 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_EP93XX=y
 CONFIG_GPIO_GENERIC=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/ep93xx/config-3.8 b/target/linux/ep93xx/config-3.8
index 130a4a6..899af2d 100644
--- a/target/linux/ep93xx/config-3.8
+++ b/target/linux/ep93xx/config-3.8
@@ -78,7 +78,6 @@ CONFIG_GENERIC_STRNLEN_USER=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_EP93XX=y
 CONFIG_GPIO_GENERIC=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/gemini/config-3.10 b/target/linux/gemini/config-3.10
index c6bcff1..8a75fa8 100644
--- a/target/linux/gemini/config-3.10
+++ b/target/linux/gemini/config-3.10
@@ -58,7 +58,6 @@ CONFIG_GENERIC_STRNLEN_USER=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/generic/config-3.10 b/target/linux/generic/config-3.10
index 4299c57..5561dee 100644
--- a/target/linux/generic/config-3.10
+++ b/target/linux/generic/config-3.10
@@ -1017,7 +1017,7 @@ CONFIG_GENERIC_TIME=y
 # CONFIG_GPIO_XILINX is not set
 # CONFIG_GREENASIA_FF is not set
 # CONFIG_HAMACHI is not set
-CONFIG_HAMRADIO=y
+# CONFIG_HAMRADIO is not set
 # CONFIG_HAPPYMEAL is not set
 # CONFIG_HARDLOCKUP_DETECTOR is not set
 # CONFIG_HAVE_AOUT is not set
diff --git a/target/linux/generic/config-3.13 b/target/linux/generic/config-3.13
index 8dff7e1..82765c4 100644
--- a/target/linux/generic/config-3.13
+++ b/target/linux/generic/config-3.13
@@ -1090,7 +1090,7 @@ CONFIG_GENERIC_TIME=y
 # CONFIG_GPIO_XILINX is not set
 # CONFIG_GREENASIA_FF is not set
 # CONFIG_HAMACHI is not set
-CONFIG_HAMRADIO=y
+# CONFIG_HAMRADIO is not set
 # CONFIG_HAPPYMEAL is not set
 # CONFIG_HARDLOCKUP_DETECTOR is not set
 # CONFIG_HAVE_AOUT is not set
diff --git a/target/linux/generic/config-3.14 b/target/linux/generic/config-3.14
index 2b8df1b..727595e 100644
--- a/target/linux/generic/config-3.14
+++ b/target/linux/generic/config-3.14
@@ -1119,7 +1119,7 @@ CONFIG_GENERIC_TIME=y
 # CONFIG_GPIO_XILINX is not set
 # CONFIG_GREENASIA_FF is not set
 # CONFIG_HAMACHI is not set
-CONFIG_HAMRADIO=y
+# CONFIG_HAMRADIO is not set
 # CONFIG_HAPPYMEAL is not set
 # CONFIG_HARDLOCKUP_DETECTOR is not set
 # CONFIG_HAVE_AOUT is not set
diff --git a/target/linux/generic/config-3.18 b/target/linux/generic/config-3.18
index d54cd5c..de0b60a 100644
--- a/target/linux/generic/config-3.18
+++ b/target/linux/generic/config-3.18
@@ -1174,7 +1174,7 @@ CONFIG_GENERIC_TIME=y
 # CONFIG_GPIO_ZEVIO is not set
 # CONFIG_GREENASIA_FF is not set
 # CONFIG_HAMACHI is not set
-CONFIG_HAMRADIO=y
+# CONFIG_HAMRADIO is not set
 # CONFIG_HAPPYMEAL is not set
 # CONFIG_HARDLOCKUP_DETECTOR is not set
 # CONFIG_HAVE_AOUT is not set
diff --git a/target/linux/generic/config-3.19 b/target/linux/generic/config-3.19
index d474c7c..e680b83 100644
--- a/target/linux/generic/config-3.19
+++ b/target/linux/generic/config-3.19
@@ -1181,7 +1181,7 @@ CONFIG_GENERIC_TIME=y
 # CONFIG_GPIO_ZEVIO is not set
 # CONFIG_GREENASIA_FF is not set
 # CONFIG_HAMACHI is not set
-CONFIG_HAMRADIO=y
+# CONFIG_HAMRADIO is not set
 # CONFIG_HAPPYMEAL is not set
 # CONFIG_HARDLOCKUP_DETECTOR is not set
 # CONFIG_HAVE_AOUT is not set
diff --git a/target/linux/generic/config-3.8 b/target/linux/generic/config-3.8
index 343c0dd..2f6703d 100644
--- a/target/linux/generic/config-3.8
+++ b/target/linux/generic/config-3.8
@@ -983,7 +983,7 @@ CONFIG_GENERIC_TIME=y
 # CONFIG_GPIO_XILINX is not set
 # CONFIG_GREENASIA_FF is not set
 # CONFIG_HAMACHI is not set
-CONFIG_HAMRADIO=y
+# CONFIG_HAMRADIO is not set
 # CONFIG_HAPPYMEAL is not set
 # CONFIG_HARDLOCKUP_DETECTOR is not set
 # CONFIG_HAVE_AOUT is not set
diff --git a/target/linux/generic/config-4.0 b/target/linux/generic/config-4.0
index 5ac2b32..94aacf6 100644
--- a/target/linux/generic/config-4.0
+++ b/target/linux/generic/config-4.0
@@ -1185,7 +1185,7 @@ CONFIG_GENERIC_TIME=y
 # CONFIG_GPIO_ZEVIO is not set
 # CONFIG_GREENASIA_FF is not set
 # CONFIG_HAMACHI is not set
-CONFIG_HAMRADIO=y
+# CONFIG_HAMRADIO is not set
 # CONFIG_HAPPYMEAL is not set
 # CONFIG_HARDLOCKUP_DETECTOR is not set
 # CONFIG_HAVE_AOUT is not set
diff --git a/target/linux/imx6/config-3.14 b/target/linux/imx6/config-3.14
index b0c35c8..f0c8d13 100644
--- a/target/linux/imx6/config-3.14
+++ b/target/linux/imx6/config-3.14
@@ -138,7 +138,6 @@ CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_GENERIC=y
 CONFIG_GPIO_MXC=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/iop32x/config-3.3 b/target/linux/iop32x/config-3.3
index 8bdfc73..d38e059 100644
--- a/target/linux/iop32x/config-3.3
+++ b/target/linux/iop32x/config-3.3
@@ -49,7 +49,6 @@ CONFIG_GENERIC_GPIO=y
 CONFIG_GENERIC_IRQ_SHOW=y
 CONFIG_GENERIC_PCI_IOMAP=y
 CONFIG_GPIOLIB=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/ixp4xx/config-3.14 b/target/linux/ixp4xx/config-3.14
index 3fcab85..bdc379b 100644
--- a/target/linux/ixp4xx/config-3.14
+++ b/target/linux/ixp4xx/config-3.14
@@ -80,7 +80,6 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_GW_I2C_PLD=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/ixp4xx/config-3.18 b/target/linux/ixp4xx/config-3.18
index 3fcab85..bdc379b 100644
--- a/target/linux/ixp4xx/config-3.18
+++ b/target/linux/ixp4xx/config-3.18
@@ -80,7 +80,6 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_GW_I2C_PLD=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/kirkwood/config-3.18 b/target/linux/kirkwood/config-3.18
index 1c8dc5b..a1f7265 100644
--- a/target/linux/kirkwood/config-3.18
+++ b/target/linux/kirkwood/config-3.18
@@ -116,7 +116,6 @@ CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_GENERIC=y
 CONFIG_GPIO_MVEBU=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HANDLE_DOMAIN_IRQ=y
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
diff --git a/target/linux/malta/config-3.14 b/target/linux/malta/config-3.14
index d38ca24..af4888d 100644
--- a/target/linux/malta/config-3.14
+++ b/target/linux/malta/config-3.14
@@ -62,7 +62,6 @@ CONFIG_GENERIC_ISA_DMA=y
 CONFIG_GENERIC_PCI_IOMAP=y
 CONFIG_GENERIC_SMP_IDLE_THREAD=y
 CONFIG_GPIO_DEVRES=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDWARE_WATCHPOINTS=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/malta/config-3.18 b/target/linux/malta/config-3.18
index 48782a7..d9757de 100644
--- a/target/linux/malta/config-3.18
+++ b/target/linux/malta/config-3.18
@@ -64,7 +64,6 @@ CONFIG_GENERIC_ISA_DMA=y
 CONFIG_GENERIC_PCI_IOMAP=y
 CONFIG_GENERIC_SMP_IDLE_THREAD=y
 CONFIG_GPIO_DEVRES=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDWARE_WATCHPOINTS=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/malta/config-3.19 b/target/linux/malta/config-3.19
index 1afc847..25d2ac1 100644
--- a/target/linux/malta/config-3.19
+++ b/target/linux/malta/config-3.19
@@ -65,7 +65,6 @@ CONFIG_GENERIC_ISA_DMA=y
 CONFIG_GENERIC_PCI_IOMAP=y
 CONFIG_GENERIC_SMP_IDLE_THREAD=y
 CONFIG_GPIO_DEVRES=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDWARE_WATCHPOINTS=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/mcs814x/config-3.14 b/target/linux/mcs814x/config-3.14
index 85ff2be..80118f6 100644
--- a/target/linux/mcs814x/config-3.14
+++ b/target/linux/mcs814x/config-3.14
@@ -61,7 +61,6 @@ CONFIG_GENERIC_IRQ_SHOW=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_MCS814X=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/mpc52xx/config-3.10 b/target/linux/mpc52xx/config-3.10
index 5cb5aee..a5e71e3 100644
--- a/target/linux/mpc52xx/config-3.10
+++ b/target/linux/mpc52xx/config-3.10
@@ -89,7 +89,6 @@ CONFIG_GEN_RTC=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_MPC5200=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT=y
diff --git a/target/linux/mpc52xx/config-3.14 b/target/linux/mpc52xx/config-3.14
index 6a253b9..4f57478 100644
--- a/target/linux/mpc52xx/config-3.14
+++ b/target/linux/mpc52xx/config-3.14
@@ -98,7 +98,6 @@ CONFIG_GEN_RTC=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_MPC5200=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT=y
diff --git a/target/linux/mpc52xx/config-3.18 b/target/linux/mpc52xx/config-3.18
index b2f9428..442d4cc 100644
--- a/target/linux/mpc52xx/config-3.18
+++ b/target/linux/mpc52xx/config-3.18
@@ -102,7 +102,6 @@ CONFIG_GLOB=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_MPC5200=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT_MAP=y
diff --git a/target/linux/mpc52xx/config-3.8 b/target/linux/mpc52xx/config-3.8
index 606d29f..cdc1b31 100644
--- a/target/linux/mpc52xx/config-3.8
+++ b/target/linux/mpc52xx/config-3.8
@@ -86,7 +86,6 @@ CONFIG_GEN_RTC=y
 # CONFIG_GE_FPGA is not set
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_MPC5200=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT=y
diff --git a/target/linux/mpc83xx/config-3.10 b/target/linux/mpc83xx/config-3.10
index bb4cdcb..e5fba21 100644
--- a/target/linux/mpc83xx/config-3.10
+++ b/target/linux/mpc83xx/config-3.10
@@ -102,7 +102,6 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_MPC8XXX=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT=y
diff --git a/target/linux/mpc83xx/config-3.14 b/target/linux/mpc83xx/config-3.14
index 44cd8e2..ae31a7d 100644
--- a/target/linux/mpc83xx/config-3.14
+++ b/target/linux/mpc83xx/config-3.14
@@ -108,7 +108,6 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_MPC8XXX=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT=y
diff --git a/target/linux/mpc83xx/config-3.18 b/target/linux/mpc83xx/config-3.18
index 473efde..3cb0606 100644
--- a/target/linux/mpc83xx/config-3.18
+++ b/target/linux/mpc83xx/config-3.18
@@ -111,7 +111,6 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_MPC8XXX=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT_MAP=y
diff --git a/target/linux/mpc83xx/config-3.8 b/target/linux/mpc83xx/config-3.8
index 5d7eb38..eaf5378 100644
--- a/target/linux/mpc83xx/config-3.8
+++ b/target/linux/mpc83xx/config-3.8
@@ -102,7 +102,6 @@ CONFIG_GIANFAR=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_MPC8XXX=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT=y
diff --git a/target/linux/mpc85xx/config-3.14 b/target/linux/mpc85xx/config-3.14
index ce85449..ed00e42 100644
--- a/target/linux/mpc85xx/config-3.14
+++ b/target/linux/mpc85xx/config-3.14
@@ -73,7 +73,6 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_MPC8XXX=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT=y
diff --git a/target/linux/mpc85xx/config-3.18 b/target/linux/mpc85xx/config-3.18
index 461ed7b..5272501 100644
--- a/target/linux/mpc85xx/config-3.18
+++ b/target/linux/mpc85xx/config-3.18
@@ -83,7 +83,6 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_MPC8XXX=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT_MAP=y
diff --git a/target/linux/mpc85xx/config-3.19 b/target/linux/mpc85xx/config-3.19
index 461ed7b..5272501 100644
--- a/target/linux/mpc85xx/config-3.19
+++ b/target/linux/mpc85xx/config-3.19
@@ -83,7 +83,6 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_MPC8XXX=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
 CONFIG_HAS_IOPORT_MAP=y
diff --git a/target/linux/octeon/config-3.14 b/target/linux/octeon/config-3.14
index d0a4dac..9e42a60 100644
--- a/target/linux/octeon/config-3.14
+++ b/target/linux/octeon/config-3.14
@@ -77,7 +77,6 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_OCTEON=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDWARE_WATCHPOINTS=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/octeon/config-3.18 b/target/linux/octeon/config-3.18
index ad6ac27..ae98d89 100644
--- a/target/linux/octeon/config-3.18
+++ b/target/linux/octeon/config-3.18
@@ -82,7 +82,6 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_OCTEON=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDWARE_WATCHPOINTS=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/omap24xx/config-3.3 b/target/linux/omap24xx/config-3.3
index b21ee37..f9d92bb 100644
--- a/target/linux/omap24xx/config-3.3
+++ b/target/linux/omap24xx/config-3.3
@@ -223,7 +223,6 @@ CONFIG_GENERIC_IRQ_SHOW=y
 CONFIG_GENERIC_PCI_IOMAP=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/orion/config-default b/target/linux/orion/config-default
index 2282cfe..8fa0a5e 100644
--- a/target/linux/orion/config-default
+++ b/target/linux/orion/config-default
@@ -64,7 +64,6 @@ CONFIG_GENERIC_STRNLEN_USER=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/pxa/config-3.10 b/target/linux/pxa/config-3.10
index 72f261a..ef1f62c 100644
--- a/target/linux/pxa/config-3.10
+++ b/target/linux/pxa/config-3.10
@@ -69,7 +69,6 @@ CONFIG_GENERIC_STRNLEN_USER=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_PXA=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/pxa/config-3.3 b/target/linux/pxa/config-3.3
index c93782f..f6892b4 100644
--- a/target/linux/pxa/config-3.3
+++ b/target/linux/pxa/config-3.3
@@ -57,7 +57,6 @@ CONFIG_GENERIC_IRQ_SHOW=y
 CONFIG_GENERIC_PCI_IOMAP=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_PXA=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/rb532/config-3.14 b/target/linux/rb532/config-3.14
index 5e7dd3d..246c5d2 100644
--- a/target/linux/rb532/config-3.14
+++ b/target/linux/rb532/config-3.14
@@ -42,7 +42,6 @@ CONFIG_GENERIC_SMP_IDLE_THREAD=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDWARE_WATCHPOINTS=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/sparc/config-default b/target/linux/sparc/config-default
index d5114ba..04c42dd 100644
--- a/target/linux/sparc/config-default
+++ b/target/linux/sparc/config-default
@@ -60,7 +60,6 @@ CONFIG_GENERIC_CMOS_UPDATE=y
 CONFIG_GENERIC_IRQ_SHOW=y
 CONFIG_GENERIC_PCI_IOMAP=y
 # CONFIG_GRETH is not set
-# CONFIG_HAMRADIO is not set
 CONFIG_HAPPYMEAL=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/sunxi/config-3.14 b/target/linux/sunxi/config-3.14
index 852ff79..e1ae931 100644
--- a/target/linux/sunxi/config-3.14
+++ b/target/linux/sunxi/config-3.14
@@ -169,7 +169,6 @@ CONFIG_GENERIC_STRNLEN_USER=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
diff --git a/target/linux/sunxi/config-3.18 b/target/linux/sunxi/config-3.18
index 6b5ca15..554bc8c 100644
--- a/target/linux/sunxi/config-3.18
+++ b/target/linux/sunxi/config-3.18
@@ -182,7 +182,6 @@ CONFIG_GLOB=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HANDLE_DOMAIN_IRQ=y
 CONFIG_HARDIRQS_SW_RESEND=y
 CONFIG_HAS_DMA=y
diff --git a/target/linux/uml/config/i386 b/target/linux/uml/config/i386
index 44c9f3b..67081a5 100644
--- a/target/linux/uml/config/i386
+++ b/target/linux/uml/config/i386
@@ -41,7 +41,6 @@ CONFIG_GENERIC_FIND_FIRST_BIT=y
 CONFIG_GENERIC_FIND_LAST_BIT=y
 CONFIG_GENERIC_FIND_NEXT_BIT=y
 CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAVE_AOUT=y
 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
 # CONFIG_HAVE_GENERIC_HARDIRQS is not set
diff --git a/target/linux/uml/config/x86_64 b/target/linux/uml/config/x86_64
index edb32bb..203ba4b 100644
--- a/target/linux/uml/config/x86_64
+++ b/target/linux/uml/config/x86_64
@@ -44,7 +44,6 @@ CONFIG_GENERIC_CPU_DEVICES=y
 CONFIG_GENERIC_FIND_FIRST_BIT=y
 CONFIG_GENERIC_IO=y
 CONFIG_GENERIC_IRQ_SHOW=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y
 # CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
diff --git a/target/linux/x86/olpc/config-default b/target/linux/x86/olpc/config-default
index 7ad86c0..90f0302 100644
--- a/target/linux/x86/olpc/config-default
+++ b/target/linux/x86/olpc/config-default
@@ -28,7 +28,6 @@ CONFIG_FB_GEODE_LX=y
 CONFIG_FREEZER=y
 CONFIG_GPIOLIB=y
 # CONFIG_GPIO_SODAVILLE is not set
-# CONFIG_HAMRADIO is not set
 CONFIG_HIBERNATE_CALLBACKS=y
 CONFIG_HIBERNATION=y
 # CONFIG_HIGHMEM64G is not set
diff --git a/target/linux/x86/rdc/config-default b/target/linux/x86/rdc/config-default
index 4d2b953..34007ac 100644
--- a/target/linux/x86/rdc/config-default
+++ b/target/linux/x86/rdc/config-default
@@ -25,7 +25,6 @@ CONFIG_DEBUG_BUGVERBOSE=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_RDC321X=y
 CONFIG_GPIO_SYSFS=y
-# CONFIG_HAMRADIO is not set
 # CONFIG_HPET_TIMER is not set
 CONFIG_HZ=250
 # CONFIG_HZ_100 is not set
diff --git a/target/linux/xburst/config-3.10 b/target/linux/xburst/config-3.10
index 1cf1a27..6efb7c2 100644
--- a/target/linux/xburst/config-3.10
+++ b/target/linux/xburst/config-3.10
@@ -80,7 +80,6 @@ CONFIG_GENERIC_IRQ_SHOW=y
 CONFIG_GENERIC_SMP_IDLE_THREAD=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_DEVRES=y
-# CONFIG_HAMRADIO is not set
 CONFIG_HARDWARE_WATCHPOINTS=y
 CONFIG_HAS_DMA=y
 CONFIG_HAS_IOMEM=y
-- 
2.0.4
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel



More information about the openwrt-devel mailing list