mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	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>
		
			
				
	
	
		
			23 lines
		
	
	
		
			600 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			600 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Copyright (C) Jiang Yutang <jiangyutang1978@gmail.com>
 | 
						|
#
 | 
						|
# This is free software, licensed under the GNU General Public License v2.
 | 
						|
# See /LICENSE for more information.
 | 
						|
#
 | 
						|
 | 
						|
define KernelPackage/ppfe
 | 
						|
  SUBMENU:=$(NETWORK_DEVICES_MENU)
 | 
						|
  TITLE:=Freescale PPFE Driver support
 | 
						|
  DEPENDS:=@TARGET_layerscape
 | 
						|
  KCONFIG:=CONFIG_FSL_PPFE=y \
 | 
						|
  	CONFIG_FSL_PPFE_UTIL_DISABLED=y
 | 
						|
  FILES:=$(LINUX_DIR)/drivers/staging/fsl_ppfe/pfe.ko
 | 
						|
  AUTOLOAD:=$(call AutoLoad,35,pfe)
 | 
						|
endef
 | 
						|
 | 
						|
define KernelPackage/ppfe/description
 | 
						|
 Kernel modules for Freescale PPFE Driver support.
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call KernelPackage,ppfe))
 |