mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-13 06:05:53 +00:00
Module kmod-crypto-hw-geode provides accelerated cbc(aes) and ecb(aes) but the software implementation is also needed when AES key size isn't 128 so that the operation can fall back. Add the kmod so that it would all work as expected out of the box. Tested-by: timur_davletshin Signed-off-by: Paul Fertser <fercerpav@gmail.com>
18 lines
519 B
Makefile
18 lines
519 B
Makefile
define Device/generic
|
|
DEVICE_VENDOR := Generic
|
|
DEVICE_MODEL := x86/Geode
|
|
DEVICE_PACKAGES += kmod-crypto-cbc kmod-crypto-ebc kmod-crypto-hw-geode \
|
|
kmod-ledtrig-gpio
|
|
GRUB2_VARIANT := legacy
|
|
endef
|
|
TARGET_DEVICES += generic
|
|
|
|
define Device/geos
|
|
$(call Device/generic)
|
|
DEVICE_VENDOR := Traverse Technologies
|
|
DEVICE_MODEL := Geos
|
|
DEVICE_PACKAGES += br2684ctl flashrom kmod-hwmon-lm90 kmod-mppe kmod-pppoa \
|
|
kmod-usb-ohci-pci linux-atm ppp-mod-pppoa pppdump pppstats soloscli tc
|
|
endef
|
|
TARGET_DEVICES += geos
|