753d827320
The various *8168 and friends among kernel modules have finally been pushed into a designated target so that RM doesn't have to care which particular additional ethernet modules are available in this particular branch and kernel. Tweak distros as appropriate. NB: *maybe* this is required by distro/.base either.
14 lines
256 B
Makefile
14 lines
256 B
Makefile
# choose std kernel flavour for max RAM size support
|
|
ifeq (i586,$(ARCH))
|
|
BIGRAM := std-pae
|
|
else
|
|
BIGRAM := std-def
|
|
endif
|
|
|
|
use/kernel:
|
|
@$(call add_feature)
|
|
@$(call set,KFLAVOURS,std-def)
|
|
|
|
use/kernel/net:
|
|
@$(call add,THE_KMODULES,e1000e igb r8168 rtl8168)
|