I create a custom ISO based on SME56.
The install process should copy additional files from the CDROM to HDD at the end of the Setup.
To get this I add the following to /images/install.cfg
# Install additional
mkdir /downloads
mkdir /tmp/one
mount -t iso9660 /tmp/cdrom /tmp/one
cp -R /mnt/one/downloads/ /downloads/
umount -r /tmp/one
rmdir /tmp/one
Only the Directory /downloads is created. The copy Section doesnt run.
How can I fix this?
sincerly
Guenter