|
@@ -44,8 +44,9 @@ setup-vbootstrap(){
|
|
fi
|
|
fi
|
|
|
|
|
|
BUILD_ROOT=${VBOOTSTRAP_DIR}/${VERSION}
|
|
BUILD_ROOT=${VBOOTSTRAP_DIR}/${VERSION}
|
|
|
|
+ BUILD_USER=vbuilder
|
|
CACHE_DIR=${VBOOTSTRAP_DIR}/cache/${VERSION}
|
|
CACHE_DIR=${VBOOTSTRAP_DIR}/cache/${VERSION}
|
|
- BUILD_DIR=/usr/src/vine
|
|
|
|
|
|
+ BUILD_DIR=/home/${BUILD_USER}/rpm
|
|
|
|
|
|
mkdir -p $VBOOTSTRAP_DIR
|
|
mkdir -p $VBOOTSTRAP_DIR
|
|
}
|
|
}
|
|
@@ -84,10 +85,15 @@ Build(){
|
|
/bin/sh -c 'apt-get -y install apt-sourceslist-nonfree && apt-get update'
|
|
/bin/sh -c 'apt-get -y install apt-sourceslist-nonfree && apt-get update'
|
|
/usr/sbin/chroot ${BUILD_ROOT} \
|
|
/usr/sbin/chroot ${BUILD_ROOT} \
|
|
/bin/sh -c 'apt-get -y install build-essential self-build-setup'
|
|
/bin/sh -c 'apt-get -y install build-essential self-build-setup'
|
|
|
|
+ /usr/sbin/chroot ${BUILD_ROOT} \
|
|
|
|
+ /bin/sh -c 'apt-get -y install etcskel shadow-utils'
|
|
|
|
|
|
/usr/sbin/chroot ${BUILD_ROOT} /bin/sh -c 'cd /dev && /sbin/MAKEDEV console'
|
|
/usr/sbin/chroot ${BUILD_ROOT} /bin/sh -c 'cd /dev && /sbin/MAKEDEV console'
|
|
/usr/sbin/chroot ${BUILD_ROOT} /bin/sh -c 'cd /dev && /sbin/MAKEDEV null'
|
|
/usr/sbin/chroot ${BUILD_ROOT} /bin/sh -c 'cd /dev && /sbin/MAKEDEV null'
|
|
/usr/sbin/chroot ${BUILD_ROOT} /bin/sh -c 'cd /dev && /sbin/MAKEDEV zero'
|
|
/usr/sbin/chroot ${BUILD_ROOT} /bin/sh -c 'cd /dev && /sbin/MAKEDEV zero'
|
|
|
|
+
|
|
|
|
+ /usr/sbin/chroot ${BUILD_ROOT} /bin/sh -c '/usr/sbin/pwconv'
|
|
|
|
+ /usr/sbin/chroot ${BUILD_ROOT} /bin/sh -c "/usr/sbin/useradd ${BUILD_USER}"
|
|
}
|
|
}
|
|
|
|
|
|
setup-vbootstrap-rpm(){
|
|
setup-vbootstrap-rpm(){
|
|
@@ -129,7 +135,7 @@ RPM_Build(){
|
|
/usr/sbin/chroot ${BUILD_ROOT} \
|
|
/usr/sbin/chroot ${BUILD_ROOT} \
|
|
/bin/sh -c "cd ${BUILD_DIR} && apt-get -y build-dep $BASE_RPM_PKG"
|
|
/bin/sh -c "cd ${BUILD_DIR} && apt-get -y build-dep $BASE_RPM_PKG"
|
|
/usr/sbin/chroot ${BUILD_ROOT} \
|
|
/usr/sbin/chroot ${BUILD_ROOT} \
|
|
- /bin/sh -c "cd ${BUILD_DIR} && rpmbuild --rebuild $RPM_OPTS $BASE_RPM_PKG"
|
|
|
|
|
|
+ /bin/sh -c "cd ${BUILD_DIR} && su ${BUILD_USER} -c 'rpmbuild --rebuild $RPM_OPTS $BASE_RPM_PKG'"
|
|
/usr/sbin/chroot ${BUILD_ROOT} \
|
|
/usr/sbin/chroot ${BUILD_ROOT} \
|
|
/bin/sh -c "cd ${BUILD_DIR} && apt-get -y install $(find $BUILD_ROOT${BUILD_DIR}/RPMS -type f -regex '.*\.rpm' | sed -e s@${BUILD_ROOT}@@g -e 's|.*\/compat32-.*||g' -e 's/$/ \\/g')"
|
|
/bin/sh -c "cd ${BUILD_DIR} && apt-get -y install $(find $BUILD_ROOT${BUILD_DIR}/RPMS -type f -regex '.*\.rpm' | sed -e s@${BUILD_ROOT}@@g -e 's|.*\/compat32-.*||g' -e 's/$/ \\/g')"
|
|
}
|
|
}
|