diff options
| author | Sungbo Eo | 2020-07-03 16:15:52 +0000 |
|---|---|---|
| committer | Adrian Schmutzler | 2020-07-03 17:48:51 +0000 |
| commit | 91472dc2ce051d255eecb7fbba3484de917fa65d (patch) | |
| tree | 9b56fd13735f595abb044580bf04191554c0d178 | |
| parent | b123ffdf6ebaa3108524bb50d306d6ae73ff7405 (diff) | |
| download | openwrt-91472dc2ce051d255eecb7fbba3484de917fa65d.tar.gz | |
kirkwood: support for button in Pogoplug V4
Pogoplug V4 has a reset button on a GPIO pin.
To use it, kmod-gpio-button-hotplug package needs to be installed.
Signed-off-by: Sungbo Eo <mans0n@gorani.run>
| -rw-r--r-- | target/linux/kirkwood/image/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/linux/kirkwood/image/Makefile b/target/linux/kirkwood/image/Makefile index b8cc92760d..87e0627a63 100644 --- a/target/linux/kirkwood/image/Makefile +++ b/target/linux/kirkwood/image/Makefile @@ -51,7 +51,8 @@ define Device/cloudengines_pogoplugv4 DEVICE_VENDOR := Cloud Engines DEVICE_MODEL := Pogoplug V4 DEVICE_DTS := kirkwood-pogoplug-series-4 - DEVICE_PACKAGES := kmod-ata-marvell-sata kmod-fs-ext4 kmod-mvsdio kmod-usb3 + DEVICE_PACKAGES := kmod-ata-marvell-sata kmod-fs-ext4 kmod-mvsdio kmod-usb3 \ + kmod-gpio-button-hotplug endef TARGET_DEVICES += cloudengines_pogoplugv4 |