Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabiand/ovirt-node-dev-utils
A couple of tools for developing and releasing oVirt Node
https://github.com/fabiand/ovirt-node-dev-utils
Last synced: about 2 months ago
JSON representation
A couple of tools for developing and releasing oVirt Node
- Host: GitHub
- URL: https://github.com/fabiand/ovirt-node-dev-utils
- Owner: fabiand
- Created: 2013-07-09T21:10:55.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-30T18:10:15.000Z (over 10 years ago)
- Last Synced: 2023-03-31T17:00:14.077Z (almost 2 years ago)
- Language: Shell
- Size: 410 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ovirt-node-dev-utils
====================A couple of tools for developing and releasing oVirt Node
makefile.build
--------------
This makefile provides a couple of targets to build the packages and ISO.To get started and build an ISO:
# Pre-requirements
$ yum install -y make git# Create some workspace
$ mkdir node-ws
$ pushd node-ws# Clone this repository
$ git clone https://github.com/fabiand/ovirt-node-dev-utils.git dev-utils
$ cd dev-utils# ... install some build requirements
$ make install-build-requirements$ popd
$ make -f dev-utils/Makefile clone-repos# ... and build the ISO
$ make -f dev-utils/Makefile iso# ... run the iso in qemu
$ make -f dev-utils/Makefile \
run-iso-in-qemu iso=$(ls -1 ovirt-node-iso/*.iso)