gnomeos: Rename images to "runtime" and "devel"

They're just better names, and this matches what the
default artifact splitter is doing now.
This commit is contained in:
Colin Walters 2011-12-20 14:44:51 -05:00
parent 5f3b029638
commit d444ee917d
3 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ if ! test -d ostree; then
fi
cd ostree
ostree --repo=${OSTREE_REPO} local-clone repo
for branch in base dev; do
for branch in runtime devel; do
rev=$(ostree --repo=repo rev-parse ${BRANCH_PREFIX}${branch});
if ! test -d ${BRANCH_PREFIX}${branch}-${rev}; then
ostree --repo=repo checkout ${rev} ${BRANCH_PREFIX}${branch}-${rev}
@ -101,7 +101,7 @@ if ! echo $ARGS | grep -q 'root='; then
ARGS="root=/dev/hda $ARGS"
fi
if ! echo $ARGS | grep -q 'ostree='; then
ARGS="ostree=${BRANCH_PREFIX}base-current $ARGS"
ARGS="ostree=${BRANCH_PREFIX}runtime-current $ARGS"
fi
exec qemu-kvm -kernel ./tmp-eglibc/deploy/images/bzImage-qemux86.bin -hda gnomeos-fs.img -net user -net nic,model=virtio -append "$ARGS"