mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 03:32:12 +02:00
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:
committed by
Richard Purdie
parent
6ea1ed5f7b
commit
4df9f11171
17
scripts/tunctl-src/Makefile
Normal file
17
scripts/tunctl-src/Makefile
Normal 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)
|
||||
Reference in New Issue
Block a user