From 4df9f11171530ca60043504ce011f34c42e93b46 Mon Sep 17 00:00:00 2001 From: Jeff Dike Date: Thu, 5 Aug 2010 14:50:14 -0400 Subject: poky-qemu-internal: Support NFS boots better The image specification can now be in the form nfs-server:directory. This makes it possible to nfs-boot from servers other than the host. poky-qemu-internal will properly construct the kernel command line given such a specification. Signed-off-by: Jeff Dike --- scripts/tunctl-src/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 scripts/tunctl-src/Makefile (limited to 'scripts/tunctl-src/Makefile') diff --git a/scripts/tunctl-src/Makefile b/scripts/tunctl-src/Makefile new file mode 100644 index 000000000..81cab8a3c --- /dev/null +++ b/scripts/tunctl-src/Makefile @@ -0,0 +1,17 @@ +OBJS = tunctl.o +BIN = tunctl +CFLAGS ?= -g -Wall + +BIN_DIR ?= /usr/bin + +all : $(BIN) + +$(BIN) : $(OBJS) + $(CC) $(CFLAGS) -o $(BIN) $(OBJS) + +clean : + rm -f $(BIN) $(OBJS) *~ + +install : $(BIN) + install -d $(DESTDIR)$(BIN_DIR) + install -s $(BIN) $(DESTDIR)$(BIN_DIR) -- cgit v1.2.3