Create CRC list of files in directory recursively on Busybox (Synology)
 
exclude Synology's @eaDir-Dirs
  
You can also try to install md5sum via ipkg
find -type f -print0 | xargs -0 cksum > checklist.chkexclude Synology's @eaDir-Dirs
find -type f ! -path "*/@eaDir/*" -print0 | xargs -0 cksum > checklist.chkYou can also try to install md5sum via ipkg