The Makefile was using the obj-$FOO = form instead of the ob-$FOO += form, so if both slip and loopback are enabled then only loopback will get built. Signed-off-by: Michael Hope <mlhx@google.com>
3 lines
70 B
Makefile
3 lines
70 B
Makefile
obj-$(CONFIG_SLIP) += slip.o
|
|
obj-$(CONFIG_NET_LOOPBACK) += loopback.o
|