mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 16:56:37 +01:00
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>
262 B
262 B
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)