Skip to content

Commit

Permalink
x86: fix kmod-forcedeth package selection
Browse files Browse the repository at this point in the history
There's no such package as forcedeth, threfore the driver is never
selected. Fix it by properly specifying package name.

Fixes: 35f208d ("x86: add nforce eth to default packages")
Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
  • Loading branch information
tmn505 authored and dangowrt committed Apr 20, 2020
1 parent 282e786 commit fd94d03
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion target/linux/x86/64/target.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARCH:=x86_64
BOARDNAME:=x86_64
DEFAULT_PACKAGES += kmod-button-hotplug kmod-e1000e kmod-e1000 kmod-r8169 \
kmod-igb kmod-bnx2 forcedeth
kmod-igb kmod-bnx2 kmod-forcedeth

define Target/Description
Build images for 64 bit systems including virtualized guests.
Expand Down
2 changes: 1 addition & 1 deletion target/linux/x86/image/generic.mk
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ define Device/generic
DEVICE_TITLE := Generic x86
DEVICE_PACKAGES += kmod-3c59x kmod-8139too kmod-e100 kmod-e1000 kmod-natsemi \
kmod-ne2k-pci kmod-pcnet32 kmod-r8169 kmod-sis900 kmod-tg3 \
kmod-via-rhine kmod-via-velocity forcedeth
kmod-via-rhine kmod-via-velocity kmod-forcedeth
GRUB2_VARIANT := generic
endef
TARGET_DEVICES += generic
2 changes: 1 addition & 1 deletion target/linux/x86/image/legacy.mk
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ define Device/generic
DEVICE_TITLE := Generic x86/legacy
DEVICE_PACKAGES += kmod-3c59x kmod-8139too kmod-e100 kmod-e1000 \
kmod-natsemi kmod-ne2k-pci kmod-pcnet32 kmod-r8169 kmod-sis900 \
kmod-tg3 kmod-via-rhine kmod-via-velocity forcedeth
kmod-tg3 kmod-via-rhine kmod-via-velocity kmod-forcedeth
GRUB2_VARIANT := legacy
endef
TARGET_DEVICES += generic

0 comments on commit fd94d03

Please sign in to comment.