mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-24 22:16:14 +00:00
713dc12960
This reverts commit 3004c20614fdb29732f750417a578274a8ed988e. The commit added the needed packages for the new target to the generic x86_64 image. This results into unwanted modules and firmware files for other x86 devices. Additionally, there is the following error message while booting the image on other x86 devices: [ 8.531720] kmodloader: 1 module could not be probed [ 8.532613] kmodloader: - leds-mlxcpld - 0 For now, the needed packages will have to be selected manually while configuring the image. Signed-off-by: Til Kaiser <til.kaiser@gmx.de>
11 lines
320 B
Makefile
11 lines
320 B
Makefile
define Device/generic
|
|
DEVICE_VENDOR := Generic
|
|
DEVICE_MODEL := x86/64
|
|
DEVICE_PACKAGES += \
|
|
kmod-amazon-ena kmod-amd-xgbe kmod-bnx2 kmod-dwmac-intel kmod-e1000e kmod-e1000 \
|
|
kmod-forcedeth kmod-fs-vfat kmod-igb kmod-igc kmod-ixgbe kmod-r8169 \
|
|
kmod-tg3
|
|
GRUB2_VARIANT := generic
|
|
endef
|
|
TARGET_DEVICES += generic
|