Displaying 7 results from an estimated 7 matches for "node_tmp".
Did you mean:
node_t
2010 Mar 26
0
[PATCH] Moves building ovirt-node-image.iso into the ovirt-node repo.
...log -1 --pretty=format:%h)
+GIT_RELEASE = $(shell date --utc +%Y%m%d%H%M%S)git$(git_head)
+RPMDIR = $$(rpm --eval '%{_rpmdir}')
+RPM_FLAGS = --define "ovirt_cache_dir $(OVIRT_CACHE_DIR)"
+RPM_FLAGS += $(if $(_ovirt_dev),--define "extra_release .$(GIT_RELEASE)")
+NODE_TMP = $(OVIRT_CACHE_DIR)/$(PACKAGE)-$(ARCH)-tmp
+SRC_KS = $(NODE_TMP)/src.ks
+NODE_KS = $(NODE_TMP)/node.ks
+
+all: $(PACKAGE).$(PKG_FMT)
+
+keys:
+ if [ "$(_ovirt_dev)" = 1 -a -f $(AUTH_KEYS) ]; then \
+ cp -va $(AUTH_KEYS) ovirt-authorized_keys ;\
+ fi
+
+no_nscd:
+ if pgrep...
2010 Mar 26
1
Updated patch...
This supercedes the previous patch by incorporating feedback from pmyers
and apevec. The ISO building target is in the recipes Makefile rather
than a separate one.
2010 Mar 29
1
Refactored new patch...
This one incorporates feedback from mburns to default certain values.
2010 Apr 07
1
[PATCH node] Fix defaulting of OVIRT_CACHE_DIR in recipe makefile
...file.am
+++ b/recipe/Makefile.am
@@ -27,7 +27,7 @@ ARCH = $(shell rpm --eval '%{_arch}')
OVIRT_NODE_RECIPE = ovirt-node-recipe.ks
PKG_FMT = iso
PACKAGE = ovirt-node-image
-OVIRT_CACHE_DIR ? =$(HOME)/ovirt-cache
+OVIRT_CACHE_DIR ?= $(HOME)/ovirt-cache
NODE_TMP = $(OVIRT_CACHE_DIR)/$(PACKAGE)-$(ARCH)-tmp
OVIRT_LOCAL_REPO ?= file://$(OVIRT_CACHE_DIR)/ovirt
NODE_KS = $(NODE_TMP)/node.ks
--
1.6.6.1
2008 Dec 25
0
[PATCH 2/4] dom0 linux: Add "guestdev=" boot parameter.
...printk(KERN_ERR "PCI: Failed to allocate memory.\n");
+ return NULL;
+}
+
+/* Make guestdev from path strings */
+static int pci_make_guestdev(char *path_str)
+{
+ char hid[HID_LEN + 1], uid[UID_LEN + 1];
+ char *sp, *ep;
+ struct guestdev *gdev, *gdev_org;
+ struct guestdev_node *node, *node_tmp;
+ int dev, func, ret_val;
+
+ ret_val = 0;
+ gdev = gdev_org = NULL;
+ sp = path_str;
+ /* Look for end of hid:uid''-'' */
+ ep = strchr(sp, ''-'');
+ /* Only hid, uid. (No dev, func) */
+ if (!ep)
+ goto format_err_end;
+
+ memset(hid, 0 ,sizeof(hid));
+ memset(ui...
2009 Sep 10
1
f11 ovirt build fails
Good morning,
I read on ovirt.org to send information about installation procedure
issues to this mailing list.
I followed ovirt building instructions but "make build" reports the following
error on fedora 11:
Error creating Live CD : Unable to download from repo : Cannot
retrieve repository metadata (repomd.xml) for repository: f11. Please
verify its path and try again
Could not
2009 Oct 14
4
Refactor ovirt-node-image code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora.
Removed ks files, now in ovirt-node-recipe, which is subpackage of ovirt-node.
Removed tools, these are now in ovirt-node-recipe which is subpackage of
ovirt-node.