Diff for /elwix/config/rc.subr between versions 1.10.2.10 and 1.10.2.12

version 1.10.2.10, 2018/07/06 08:30:29 version 1.10.2.12, 2020/10/22 12:37:59
Line 197  MakeFS_boot() Line 197  MakeFS_boot()
                         install -m 444 ${CFGDIR}/boot/logo-elwix.4th $1/boot;                          install -m 444 ${CFGDIR}/boot/logo-elwix.4th $1/boot;
                         install -m 444 ${CFGDIR}/boot/brand-elwix.4th $1/boot;                          install -m 444 ${CFGDIR}/boot/brand-elwix.4th $1/boot;
                         install -m 444 ${CFGDIR}/boot/menu.4th $1/boot;                          install -m 444 ${CFGDIR}/boot/menu.4th $1/boot;
                           install -m 444 ${CFGDIR}/boot/logo-elwix.lua $1/boot/lua;
                           install -m 444 ${CFGDIR}/boot/brand-elwix.lua $1/boot/lua;
                         ;;                          ;;
                 *)                  *)
                         ;;                          ;;
Line 312  StripFiles() Line 314  StripFiles()
                 done                  done
                 cd -                  cd -
                 rm -f $TMPFILE                  rm -f $TMPFILE
           fi
   }
   
   # $1 = file_pattern
   # $2 = From dir
   # $3 = To dir
   InstallLinks()
   {
           if [ -d "$2" ]; then
                   cd $2
                   find . -type l -name "$1" | 
                           tar -cvf - -T - | tar -C $3 -xf -
                   cd -
         fi          fi
 }  }

Removed from v.1.10.2.10  
changed lines
  Added in v.1.10.2.12


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>