diff options
author | Stefan K. Berg <stefan.k.berg@ericsson.com> | 2016-01-21 12:48:38 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-01-21 12:48:39 +0000 |
commit | f1cdd0c49d4495a59bd797ee7353cef816976d4a (patch) | |
tree | 2ff8660c5192300995edab32dd41ca623d6d47d6 /build/f_isoroot/f_kscfg/Makefile | |
parent | 218381cdc6073510d7ee280c1a5f54e56b25b051 (diff) | |
parent | 35697966da656585c43e2a2342a135ada65703cb (diff) |
Merge "Turn on fuelmenu by default, turn off biosdevname"
Diffstat (limited to 'build/f_isoroot/f_kscfg/Makefile')
-rw-r--r-- | build/f_isoroot/f_kscfg/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build/f_isoroot/f_kscfg/Makefile b/build/f_isoroot/f_kscfg/Makefile index fe740418d..2a82a1803 100644 --- a/build/f_isoroot/f_kscfg/Makefile +++ b/build/f_isoroot/f_kscfg/Makefile @@ -13,12 +13,14 @@ TOP := $(shell pwd) .PHONY: all all: @mkdir -p release - @cp ks.cfg release + grep -q OpenStack_Fuel ks.cfg + sed "s/OpenStack_Fuel/$(PRODNO)_$(REVSTATE)/g" ks.cfg > ks.cfg.patched + @cp ks.cfg.patched release/ks.cfg @cp ks.cfg.orig release .PHONY: clean clean: - @rm -rf release + @rm -rf release ks.cfg.patched .PHONY: release release: all |