2011-07-02 12:34:17 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2011-09-22 11:15:28 +00:00
|
|
|
SRC_ROOT=../..
|
|
|
|
[ -n "$1" ] && SRC_ROOT=$1
|
|
|
|
|
2011-07-02 12:34:17 +00:00
|
|
|
rm -fr rpms_to_install/*
|
|
|
|
VERSION_CORE=$(cat version_core)
|
2011-09-22 11:15:28 +00:00
|
|
|
ln -s $SRC_ROOT/core/rpm/x86_64/qubes-core-appvm-$VERSION_CORE.rpm rpms_to_install/qubes-core-appvm
|
|
|
|
ln -s $SRC_ROOT/core/rpm/x86_64/qubes-core-appvm-libs-$VERSION_CORE.rpm rpms_to_install/qubes-core-appvm-libs
|
|
|
|
ln -s $SRC_ROOT/core/rpm/x86_64/qubes-core-commonvm-$VERSION_CORE.rpm rpms_to_install/qubes-core-commonvm
|
|
|
|
ln -s $SRC_ROOT/core/rpm/x86_64/qubes-core-netvm-$VERSION_CORE.rpm rpms_to_install/qubes-core-netvm
|
|
|
|
ln -s $SRC_ROOT/core/rpm/x86_64/qubes-core-proxyvm-$VERSION_CORE.rpm rpms_to_install/qubes-core-proxyvm
|
2011-07-02 12:34:17 +00:00
|
|
|
|
|
|
|
VERSION_GUI=$(cat version_gui)
|
2011-09-22 11:15:28 +00:00
|
|
|
ln -s $SRC_ROOT/gui/rpm/x86_64/qubes-gui-vm-$VERSION_GUI.rpm rpms_to_install/qubes-gui-vm
|
2011-07-02 12:34:17 +00:00
|
|
|
|
|
|
|
VERSION_XEN=$(cat version_xen)
|
2011-09-22 11:15:28 +00:00
|
|
|
ln -s $SRC_ROOT/xen/rpm/x86_64/xen-libs-$VERSION_XEN.rpm rpms_to_install/xen-libs
|
|
|
|
ln -s $SRC_ROOT/xen/rpm/x86_64/xen-licenses-$VERSION_XEN.rpm rpms_to_install/xen-licenses
|
|
|
|
ln -s $SRC_ROOT/xen/rpm/x86_64/xen-qubes-vm-essentials-$VERSION_XEN.rpm rpms_to_install/xen-qubes-vm-essentials
|