My dirty solution was to create a clean checkout using v1.6 and then copy only the .svn folders to the existing working copy using a little bash script:
#!/usr/bin/env bash
target=/projects/working-copy-dir
svn_dirs=`find . -type d -iname .svn`
for svn_dir in $svn_dirs; do
tosvn_dir=$target${svn_dir/\.\//} # strip the extra './' path component
cp -r $svn_dir $tosvn_dir
done
This assumes the script is run from the clean checkout dir. Target is the modified working copy. The top-level v1.7 .svn dir should be removed/renamed before running the script.
ps. I am not going to mark this as an answer for the time being, because the solution above is a workaround and does not actually convert the project from 1.7 to 1.6. So the question remains open.