mirror of https://github.com/hak5/openwrt.git
layerscape: kmod-ppfe: Fix kernel options
The CONFIG_FSL_PPFE and the CONFIG_FSL_PPFE_UTIL_DISABLED are boolean, so they should be selected with an =y in OpenWrt, otherwise OpenWrt will select them as =m. These options will make pfe.ko being build as a module even if this is boolean. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>openwrt-19.07
parent
7cc2a6c6be
commit
d8274451cb
|
@ -9,7 +9,8 @@ define KernelPackage/ppfe
|
||||||
SUBMENU:=$(NETWORK_DEVICES_MENU)
|
SUBMENU:=$(NETWORK_DEVICES_MENU)
|
||||||
TITLE:=Freescale PPFE Driver support
|
TITLE:=Freescale PPFE Driver support
|
||||||
DEPENDS:=@TARGET_layerscape
|
DEPENDS:=@TARGET_layerscape
|
||||||
KCONFIG:=CONFIG_FSL_PPFE CONFIG_FSL_PPFE_UTIL_DISABLED
|
KCONFIG:=CONFIG_FSL_PPFE=y \
|
||||||
|
CONFIG_FSL_PPFE_UTIL_DISABLED=y
|
||||||
FILES:=$(LINUX_DIR)/drivers/staging/fsl_ppfe/pfe.ko
|
FILES:=$(LINUX_DIR)/drivers/staging/fsl_ppfe/pfe.ko
|
||||||
AUTOLOAD:=$(call AutoLoad,35,pfe)
|
AUTOLOAD:=$(call AutoLoad,35,pfe)
|
||||||
endef
|
endef
|
||||||
|
|
Loading…
Reference in New Issue