Diff for /elwix/build_romfs.sh between versions 1.6.2.10 and 1.8.2.1

version 1.6.2.10, 2013/08/02 13:55:36 version 1.8.2.1, 2016/11/14 00:56:05
Line 96  install_romfs() Line 96  install_romfs()
         install -v ${CFGDIR}/root.skel/profile $SKEL/dot.profile;          install -v ${CFGDIR}/root.skel/profile $SKEL/dot.profile;
         install -v ${CFGDIR}/root.skel/vimrc $SKEL/dot.vimrc;          install -v ${CFGDIR}/root.skel/vimrc $SKEL/dot.vimrc;
   
        find ${WORLD}/lib -type f -name \*.so.\* -exec install {} $LIBS \;        find ${WORLD}/lib -type f -name \*.so.\* ! -name \*.debug -exec install {} $LIBS \;
         find ${WORLD}/lib -type f -name libalias_\*.so -exec install {} $LIBS \;          find ${WORLD}/lib -type f -name libalias_\*.so -exec install {} $LIBS \;
         find ${WORLD}/lib/geom -type f -name \*.so -exec install {} $LIBS/geom \;          find ${WORLD}/lib/geom -type f -name \*.so -exec install {} $LIBS/geom \;
        find ${WORLD}/usr/lib -type f -name \*.so.\* -exec install {} $LIBS \;        find ${WORLD}/usr/lib -type f -name \*.so.\* ! -name \*.debug -exec install {} $LIBS \;
         find ${WORLD}/usr/lib/engines -type f -name \*.so -exec install {} $LIBS/engines \;
   
         InstallList ${ELWIX_ROMFS} ${WORLD} ${ROMFS}          InstallList ${ELWIX_ROMFS} ${WORLD} ${ROMFS}
   
Line 132  build_image() Line 133  build_image()
 }  }
   
 ### main()  ### main()
clean_romfsclean_romfs || exit 1
build_romfsbuild_romfs || exit 1
   
install_romfsinstall_romfs || exit 1
build_imagebuild_image || exit 1
   
 echo "+++ Complete build ELWIX RomFS"  echo "+++ Complete build ELWIX RomFS"

Removed from v.1.6.2.10  
changed lines
  Added in v.1.8.2.1


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