Start sshd daemon before fuelmenu
[fuel.git] / build / f_isoroot / f_onosfwpluginbuild / Makefile
1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 # jonas.bjurel@eicsson.com
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 TOP := $(shell pwd)
11
12 ############################################################################
13 # BEGIN of Include definitions
14 #
15 include config.mk
16 #
17 # END Include definitions
18 #############################################################################
19
20 .PHONY: all
21 all: .onosbuild
22
23 .PHONY: clean
24 clean:
25         @rm -f .onosbuild ../release/opnfv/onos*.rpm onos*.rpm
26         @rm -f $(BUILD_BASE)/gitinfo_onos-plugin.txt gitinfo_onos-plugin.txt
27
28 .PHONY: release
29 release:.onosbuild
30         @rm -f ../release/opnfv/onos*.rpm
31         @mkdir -p ../release/opnfv
32         @cp onos*.rpm ../release/opnfv/
33         cp gitinfo_onos-plugin.txt $(BUILD_BASE)
34         cd $(BUILD_BASE) && mkdir -p ../deploy/templates/plugins && cp -rf $(TOP)/config/* ../deploy/templates/plugins
35
36 .onosbuild:
37         @rm -rf fuel-plugin-onos
38         sudo apt-get -y install build-essential ruby-dev rubygems-integration python-pip git rpm createrepo dpkg-dev
39         sudo pip install fuel-plugin-builder
40         git clone $(ONOS_REPO)
41         cd fuel-plugin-onos; \
42         git checkout $(ONOS_BRANCH); \
43         if [ ! -z $(ONOS_CHANGE) ]; then \
44            git fetch $(ONOS_REPO) $(ONOS_CHANGE); \
45            git checkout FETCH_HEAD; \
46         fi
47         INCLUDE_DEPENDENCIES=true fpb --debug --build fuel-plugin-onos/
48         @mv fuel-plugin-onos/onos*.rpm .
49         $(REPOINFO) -r . > gitinfo_onos-plugin.txt
50         @rm -rf fuel-plugin-onos
51         @touch .onosbuild
52
53 #############################################################################
54 # Cache operations - only used when building through ci/build.sh
55 #############################################################################
56
57
58 # Create a unique hash to be used for getting and putting cache, based on:
59 #   - The SHA1 hash of the HEAD on the plugin repo's $(ONOS_BRANCH)
60 #   - The contents of this Makefile
61 .cacheid:
62         @if [ ! -z $(ONOS_CHANGE) ]; then \
63           $(CACHETOOL) getcommitid $(ONOS_REPO) $(ONOS_CHANGE) > .cachedata; \
64         else \
65           $(CACHETOOL) getcommitid $(ONOS_REPO) $(ONOS_BRANCH) > .cachedata; \
66         fi
67         @sha1sum Makefile | awk {'print $$1'} >> .cachedata
68         @sha1sum config.mk | awk {'print $$1'} >> .cachedata
69         @cat .cachedata | $(CACHETOOL) getid > .cacheid
70
71 # Clean local data related to caching - called prior to ordinary build
72 .PHONY: clean-cache
73 clean-cache: clean
74         @rm -f .cachedata .cacheid
75
76 # Try to download cache - called prior to ordinary build
77 .PHONY: get-cache
78 get-cache: .cacheid
79         @if $(CACHETOOL) check $(shell cat .cacheid); then \
80                  $(CACHETOOL) get $(shell cat .cacheid) | tar xf -;\
81         else \
82                 echo "No cache item found for $(shell cat .cacheid)" ;\
83                 exit 0;\
84         fi
85
86 # Store cache if not already stored - called after ordinary build
87 .PHONY: put-cache
88 put-cache: .cacheid
89         @tar cf - .onosbuild onos*.rpm gitinfo_onos-plugin.txt | $(CACHETOOL) put $(shell cat .cacheid)