aboutsummaryrefslogtreecommitdiff
path: root/clients
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2016-10-12 12:44:05 +0200
committerAlexey Kardashevskiy <aik@ozlabs.ru>2016-10-17 11:02:16 +1100
commit725e9d28b783696261b9c35a9aeabad6990d8ef3 (patch)
tree05612830c443c889262f1ab332e49f29b4441cc6 /clients
parenta8750987ca0cb33756357fa5da9bda1896e85b7a (diff)
downloadSLOF-725e9d28b783696261b9c35a9aeabad6990d8ef3.zip
SLOF-725e9d28b783696261b9c35a9aeabad6990d8ef3.tar.gz
SLOF-725e9d28b783696261b9c35a9aeabad6990d8ef3.tar.bz2
Do not link libnet to net-snk anymore, and remove net-snk from board-qemu
Since libnet is now linked to Paflof directly, we do not have to link it into net-snk anymore. So for board-qemu, we can now even exclude net-snk completely from the build (for board-js2x, it is still required for the biosemu, so we can not erase the net-snk folder completely yet). Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Diffstat (limited to 'clients')
-rw-r--r--clients/net-snk/Makefile2
-rw-r--r--clients/net-snk/app/Makefile2
-rw-r--r--clients/net-snk/app/main.c1
3 files changed, 2 insertions, 3 deletions
diff --git a/clients/net-snk/Makefile b/clients/net-snk/Makefile
index 1cab7ae..c0bb73a 100644
--- a/clients/net-snk/Makefile
+++ b/clients/net-snk/Makefile
@@ -17,7 +17,7 @@ include $(TOP)/make.rules
OBJS = kernel/kernel.o oflib/oflib.o libc/libc-glue.o app/app.o
.PHONY : subdirs clean depend mrproper
-CLIENTLIBS = $(LIBCMNDIR)/libelf.a $(LIBCMNDIR)/libnet.a $(LIBCMNDIR)/libc.a
+CLIENTLIBS = $(LIBCMNDIR)/libelf.a $(LIBCMNDIR)/libc.a
all: .depend subdirs
$(MAKE) client
diff --git a/clients/net-snk/app/Makefile b/clients/net-snk/app/Makefile
index 52d446c..2da02b9 100644
--- a/clients/net-snk/app/Makefile
+++ b/clients/net-snk/app/Makefile
@@ -16,7 +16,7 @@ export TOP
endif
include $(TOP)/make.rules
-CFLAGS +=$(ADDCFLAGS) -I$(LIBCMNDIR)/libnet
+CFLAGS +=$(ADDCFLAGS)
OBJS = main.o
diff --git a/clients/net-snk/app/main.c b/clients/net-snk/app/main.c
index 0dde404..17c16b6 100644
--- a/clients/net-snk/app/main.c
+++ b/clients/net-snk/app/main.c
@@ -13,7 +13,6 @@
#include <string.h>
#include <stdio.h>
#include <of.h>
-#include <netapps.h>
#include <libbootmsg.h>
#ifdef SNK_BIOSEMU_APPS