Re: Build a desktop iso using Artools
Reply #19 –
Found where the error is and it is not in profiles.
In "/usr/lib/artools/util-iso-profiles.sh" There appear to be two desktop lines missing?
desktop_list="${DATADIR}/iso-profiles/${profile}/Packages-Desktop" #add line 22
desktop_overlay="${DATADIR}/iso-profiles/${profile}/desktop-overlay"# add line 25
Note the use of "${profile}" to pick any profile invoked by buildiso including base.
[[ "$prof" != '$profile' ]] && profdir=${workspace_dir}/iso-profiles/$prof # edit line 14
Note you need to change "base" to "$profile as above. for this to work
Perhaps not the best or a perfect solution as buildiso -p profile -qv no longer works properly?
One further file is required to be edited
live_list="${DATADIR}/iso-profiles/${profile}/Packages-Live" # edit line 28
In summary files with "profile" pull from the DE profile and those with the "base" pull from the BASE profile
@artoo