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>
This commit is contained in:
Jeff Dike
2010-08-05 14:50:14 -04:00
committed by Richard Purdie
parent 6ea1ed5f7b
commit 4df9f11171
2 changed files with 31 additions and 10 deletions

View File

@@ -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)