From 6a066f1c8301774fd34bf07c82ebb9c54d053f84 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 26 Feb 2016 09:47:36 -0500 Subject: updating the centos dvd version Change-Id: I2ab43f43858745b5ac5ed695301ad09290b2c320 Signed-off-by: Dan Radez (cherry picked from commit 7f1312c63dff70df8a2c29bfe4a16b6e159e4c44) --- build/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build/Makefile b/build/Makefile index ecb6e369..f5a51ebb 100644 --- a/build/Makefile +++ b/build/Makefile @@ -17,8 +17,8 @@ SHELL = /bin/bash export UNIT_TEST = FALSE export USE_MASTER = "" export INTERACTIVE = TRUE -export CENTDNLD = http://mirrors.cat.pdx.edu/centos/7.1.1503/isos/x86_64/CentOS-7-x86_64-DVD-1503-01.iso -export ISOSRC = file:$(shell pwd)/CentOS-7-x86_64-DVD-1503-01.iso +export CENTDNLD = http://mirrors.cat.pdx.edu/centos/7.2.1511/isos/x86_64/CentOS-7-x86_64-DVD-1511.iso +export ISOSRC = file:$(shell pwd)/$(shell basename $(CENTDNLD)) export ISOCACHE = $(shell pwd)/$(shell basename $(ISOSRC)) export PRODNO = "OPNFV_BGS" export REVSTATE = "0000" @@ -61,7 +61,7 @@ include cache.mk ############################################################################# $(ISOCACHE): - test -s $(ISOCACHE) || { wget -nv $(CENTDNLD) ; } + sh -c "test -s $(ISOCACHE) || { wget -nv $(CENTDNLD) ; }" .PHONY: mount-centiso umount-centiso mount-centiso: $(ISOCACHE) @@ -178,6 +178,7 @@ iso: build-clean instack rpm $(ISOCACHE) @mkdir centos release cd centos && bsdtar -xf ../$(shell basename $(ISOSRC)) # modify the installer iso's contents + @chmod -R u+w centos @cp -f isolinux.cfg centos/isolinux/isolinux.cfg @cp $(APEXRPMCOM) centos/Packages @cp $(APEXRPMINS) centos/Packages -- cgit 1.2.3-korg