mpc85xx: add input drivers to default packages, and load those during preinit
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 35626
This commit is contained in:
parent
ce6a7543fe
commit
62e80eba31
2 changed files with 14 additions and 1 deletions
|
@ -17,7 +17,9 @@ LINUX_VERSION:=3.7.8
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/target.mk
|
include $(INCLUDE_DIR)/target.mk
|
||||||
|
|
||||||
DEFAULT_PACKAGES += kmod-booke-wdt
|
DEFAULT_PACKAGES += \
|
||||||
|
kmod-input-core kmod-input-gpio-keys kmod-button-hotplug \
|
||||||
|
kmod-booke-wdt
|
||||||
|
|
||||||
define Target/Description
|
define Target/Description
|
||||||
Build images for the Freescale MPC85xx based boards.
|
Build images for the Freescale MPC85xx based boards.
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
#
|
||||||
|
# Copyright (C) 2013 OpenWrt.org
|
||||||
|
#
|
||||||
|
|
||||||
|
preinit_mpc85xx_load_input_drivers() {
|
||||||
|
insmod input-core
|
||||||
|
insmod gpio_keys
|
||||||
|
insmod button-hotplug
|
||||||
|
}
|
||||||
|
|
||||||
|
boot_hook_add preinit_main preinit_mpc85xx_load_input_drivers
|
Loading…
Reference in a new issue