[BACK]Return to util.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.sbin / sysinst

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.sbin/sysinst/util.c between version 1.42 and 1.43

version 1.42, 2020/01/26 14:37:29 version 1.43, 2020/05/12 16:18:04
Line 2199  free_install_desc(struct install_partiti
Line 2199  free_install_desc(struct install_partiti
         free(install->infos);          free(install->infos);
 }  }
   
   /*
    * Called while at the end of install when targetroot is still mounted
    * and writable
    */
   void
   save_entropy(void)
   {
   
           if (!binary_available("rndctl"))
                   return;
   
           run_program(RUN_SILENT|RUN_ERROR_OK, "rndctl -S %s",
               target_expand("/var/db/entropy-file"));
   }
   
 #ifdef MD_MAY_SWAP_TO  #ifdef MD_MAY_SWAP_TO
 bool  bool
 may_swap_if_not_sdmmc(const char *disk)  may_swap_if_not_sdmmc(const char *disk)

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.43

CVSweb <webmaster@jp.NetBSD.org>