search for: inst_dir

Displaying 13 results from an estimated 13 matches for "inst_dir".

Did you mean: ins_dir
2008 Mar 20
1
Bug#471768: there's no hvmloader in xen-utils-unstable
Package: xen-utils-unstable Version: 3.3-unstable+hg17192-1 Severity: important Tags: patch In tools/firmware/Makefile, INST_DIR is $(DESTDIR)/usr/$(PREFIX)/boot but $(PREFIX) is empty. hvmloader doesn't get installed. diff -ru xen-unstable-3.3-unstable+hg17192.orig/debian/patches/tools-prefix.diff xen-unstable-3.3-unstable+hg17192/debian/patches/tools-prefix.diff --- xen-unstable-3.3-unstable+hg17192.orig/debian/patche...
2009 May 28
1
[PATCH] blktap2: fix makefile of vhd for parallel make
...: vhd-util.o +vhd-util: vhd-util.o subdir-all-lib $(CC) $(CFLAGS) -o vhd-util vhd-util.o $(LIBS) -vhd-update: vhd-update.o +vhd-update: vhd-update.o subdir-all-lib $(CC) $(CFLAGS) -o vhd-update vhd-update.o $(LIBS) install: all - $(MAKE) -C $(LIBDIR) install $(INSTALL_DIR) -p $(DESTDIR)$(INST_DIR) $(INSTALL_PROG) $(IBIN) $(DESTDIR)$(INST_DIR) clean: - $(MAKE) -C $(LIBDIR) clean rm -rf *.o *~ $(DEPS) $(IBIN) -.PHONY: all build clean install libvhd vhd-util vhd-update +.PHONY: all build clean install vhd-util vhd-update +all clean install: %: subdirs-% -include $(DEPS) -- yamah...
2004 Jun 18
1
Rsync, Cygwin, & SSH: ntsec OR nontsec?
...0.0 Server Info: Debian Sarge using rsync 2.6 (no daemon mode) Backup .bat file: rem ------------------- These change for each client. set USER=<Server_Login_Name> set USER_IP=<SourceIP> set BKUP_SRC=/cygdrive/c/foo-dir rem ------------------- These should not change-usually. set INST_DIR=rsync_backup set INST_LOC=C:\%INST_DIR% set CYGWIN=binmode tty set TERM=ansi set HOME=%INST_LOC% set REMOTE=<serverIP> set BKUP_DEST=data/ set LOG_DEST=backup_stats/ set LOG_FILE=/cygdrive/c/%INST_DIR%/home_rsync.log set BKUP_BKUP_DIR=backup_backups/ rem ------------------- The commands. d...
2007 Oct 24
2
R trunk (2.7) build fails with -fpic, needs -fPIC (PR#10372)
On Linux x86-64 (Ubuntu 6.06), the latest R sources from the Subversion trunk fail to build with the following "recompile with -fPIC" error: $ ./configure --with-x=yes --prefix=$inst_dir --enable-R-shlib --with-tcltk=/usr/lib/tcl8.4 --with-tcl-config=/usr/lib/tcl8.4/tclConfig.sh $ make /usr/bin/ld: ../appl/approx.o: relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC ../appl/approx.o: could not read symbols: B...
2006 Oct 17
4
[PATCH] Fix tools build on Solaris
...= -g endif +TOOL_CFLAGS += -std=gnu99 -D_POSIX_C_SOURCE=200112L -D__EXTENSIONS__ + CAFLAGS = -Wa,--divide CONFIG_MBOOTPACK_OS = n diff --git a/tools/blktap/drivers/Makefile b/tools/blktap/drivers/Makefile --- a/tools/blktap/drivers/Makefile +++ b/tools/blktap/drivers/Makefile @@ -8,6 +8,7 @@ INST_DIR = /usr/sbin INST_DIR = /usr/sbin LIBAIO_DIR = ../../libaio/src +CFLAGS += $(TOOL_CFLAGS) CFLAGS += -Werror CFLAGS += -Wno-unused CFLAGS += -fno-strict-aliasing diff --git a/tools/blktap/lib/Makefile b/tools/blktap/lib/Makefile --- a/tools/blktap/lib/Makefile +++ b/tools/blktap/li...
2011 Mar 16
3
[PATCH] tools: do not link against unused libraries
...qcow2raw qcow-create img2qcow qcow2raw qcow-create: %: %.o $(TAP-OBJS-y) $(BLK-OBJS-y) - $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) $(AIOLIBS) $(MEMSHRLIBS) $(LBLIBS_img) + $(CC) -o $@ $^ $(LDFLAGS) -lrt -lz $(VHDLIBS) $(AIOLIBS) $(MEMSHRLIBS) -lm install: all $(INSTALL_DIR) -p $(DESTDIR)$(INST_DIR) diff -r f35234b6636a -r 7e326d27d899 tools/console/Makefile --- a/tools/console/Makefile Tue Mar 15 16:33:59 2011 +0000 +++ b/tools/console/Makefile Wed Mar 16 10:38:52 2011 +0000 @@ -1,4 +1,3 @@ - XEN_ROOT=../.. include $(XEN_ROOT)/tools/Rules.mk @@ -8,9 +7,10 @@ CFLAGS += $(CFLAGS_libxensto...
2012 Feb 10
6
[PATCH v2 0/3] hvmloader: Make ROM dependencies optional
This patch set mainly allows the user to build a seabios or rombios only version of hvmloader. In addition, when building a seabios only hvmloader, Option ROMs like vgabios and etherboot are no longer required, and therefore can be disabled from the build. Dependency on the bcc compiler can also be avoided the same way. v2: Separate patches for separate issues Introduced config option to
2012 Jan 16
13
[PATCH v10 0/7] build upstream qemu and seabios by default
Hi all, this is the tenth version of the patch series to introduce upstream qemu and seabios in the xen-unstable build system. Changes to v9: - rename QEMU_UPSTREAM_TAG to QEMU_UPSTREAM_REVISION: we are going to use it with a branch name by default; - set QEMU_UPSTREAM_REVISION to "master" by default; - set SEABIOS_UPSTREAM_URL to git://xenbits.xen.org/seabios.git by default; - add
2013 Jul 15
8
[PATCH 0 of 7 v5] Introduce the tapback daemon (most of blkback in user-space)
This patch series introduces the tapback daemon, the user space daemon that acts as a device''s back-end, essentially most of blkback in user space. The daemon is responsible for coordinating the front-end and tapdisk. It creates tapdisk process as needed, instructs them to connect to/disconnect from the shared ring, and manages the state of the back-end. The shared ring between the
2013 Oct 15
29
[PATCH 0/4] Reintroduce OVMF support
This small series reintroduces OVMF support in Xen You can fetch working OVMF tree on: git://xenbits.xen.org/people/liuw/ovmf.git master Working changeset that can be sticked in Config.mk is: 8833370303d3bf3153760ee42760ef1b9b5c562 Note that VNC doesn''t work properly when using OVMF, but that''s not OVMF''s problem. This issue should be addressed in Xen and I''m
2013 Apr 19
8
[PATCH 0 of 8] blktap3/libvhd: Introduce VHD library.
This patch series introduces the VHD library. It is based on the blktap2 one, with changes coming from the blktap2.5 one. Signed-off-by: Thanos Makatos <thanos.makatos@citrix.com>
2013 Jul 15
21
[PATCH 00 of 21 RESEND] blktap3/drivers: Introduce tapdisk server.
This patch series copies the core of the tapdisk process from blktap2, with updates coming from blktap2.5. Signed-off-by: Thanos Makatos <thanos.makatos@citrix.com>
2012 Feb 11
14
[PATCH v3 0/5] hvmloader: Make ROM dependencies optional
This patch set mainly allows the user to build a seabios or rombios only version of hvmloader. In addition, when building a seabios only hvmloader, Option ROMs like vgabios and etherboot are no longer required, and therefore can be disabled from the build. Dependency on the bcc compiler can also be avoided the same way. v2: Separate patches for separate issues Introduced config option to