diff options
| author | Jeff Dike <jdike@x86_64.user-mode-linux.org> | 2010-08-05 14:50:14 -0400 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-20 16:20:10 +0100 |
| commit | 4df9f11171530ca60043504ce011f34c42e93b46 (patch) | |
| tree | 81b6b7b565e7645d44d391da0bf80cf897842a34 /scripts/tunctl-src | |
| parent | 6ea1ed5f7b51b7c04e8aca29319c970846ddf1b8 (diff) | |
| download | poky-4df9f11171530ca60043504ce011f34c42e93b46.tar.gz | |
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 <jdike@linux.intel.com>
Diffstat (limited to 'scripts/tunctl-src')
| -rw-r--r-- | scripts/tunctl-src/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/tunctl-src/Makefile b/scripts/tunctl-src/Makefile new file mode 100644 index 0000000000..81cab8a3cd --- /dev/null +++ b/scripts/tunctl-src/Makefile | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | OBJS = tunctl.o | ||
| 2 | BIN = tunctl | ||
| 3 | CFLAGS ?= -g -Wall | ||
| 4 | |||
| 5 | BIN_DIR ?= /usr/bin | ||
| 6 | |||
| 7 | all : $(BIN) | ||
| 8 | |||
| 9 | $(BIN) : $(OBJS) | ||
| 10 | $(CC) $(CFLAGS) -o $(BIN) $(OBJS) | ||
| 11 | |||
| 12 | clean : | ||
| 13 | rm -f $(BIN) $(OBJS) *~ | ||
| 14 | |||
| 15 | install : $(BIN) | ||
| 16 | install -d $(DESTDIR)$(BIN_DIR) | ||
| 17 | install -s $(BIN) $(DESTDIR)$(BIN_DIR) | ||
