Index: stand/common/module.c =================================================================== --- stand/common/module.c +++ stand/common/module.c @@ -466,7 +466,14 @@ } #ifdef LOADER_VERIEXEC - if (verify_file(fd, name, 0, VE_MUST) < 0) { + /* + * Permit anything to be loaded as entropy cache. + * It will change every time the system is booted, + * so we can't really verify it. + */ + if (strcmp(type, "boot_entropy_cache") && + strcmp(type, "/boot/entropy") && /* For compatibility. */ + verify_file(fd, name, 0, VE_MUST) < 0) { sprintf(command_errbuf, "can't verify '%s'", name); free(name); close(fd);