Hello
I have a project that based on Qubes.
I am trying to build qubes iso with my changes, here's a transcript of what i am doing:
#!/bin/sh
echo clonning qubes-builder
cp builder.conf.2017.10.27 qubes-builder/builder.conf
cd qubes-builder
make get-sources
cd qubes-src
tar xfz ~/artwork_20170915.tar.gz
cd ~/diffs;
for i in `ls` ; do
dir=`basename $i .diff`
pushd ~/qubes-builder/qubes-src/$dir
patch -p1 < ~/diffs/$i
popd
done
cd ~/qubes-builder
make qubes #first way
# make vmm-xen core-admin linux-kernel gui-daemon template desktop-linux-kde installer-qubes-os manager linux-dom0-updates #second way
make iso
now, if I am building it the first way , i.e. using 'make qubes' - it works and image produced. but the image produced isn't usable because it lacks templates.
it installs, but once i am trying to create any vm from the manager - there is 'No template available' window from dom0.
if I am trying to build it the second way - it yields an error to me saying that it cannot find some packages.
What is the most proper way to build the iso with custom changes?
thank you.