verify-fork-functions: exclude intentional RB divergences (ramfs Debug fmt, randd reseed_prng)

ramfs dropped upstream's impl std::fmt::Debug for FileData during the
scheme/filesystem split (inert, derivable). randd replaced upstream
reseed_prng(entropy) with the pooled reseed_from_pool() entropy model.
Both are intentional; add them to the fork-function exclude list so the
build preflight no longer false-positive-fails.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Red Bear OS
2026-07-27 11:43:31 +09:00
parent 00b4c141b2
commit ec7670ef0f
+8
View File
@@ -82,3 +82,11 @@ netstack/src/main.rs:get_network_adapter
# ramfs — RB filesystem refactoring # ramfs — RB filesystem refactoring
ramfs/src/scheme.rs:as_inode ramfs/src/scheme.rs:as_inode
ramfs/src/scheme.rs:relpathat ramfs/src/scheme.rs:relpathat
# RB dropped upstream's `impl std::fmt::Debug for FileData` during the ramfs
# scheme/filesystem split. It is a debug-only trait impl (derivable, inert).
ramfs/src/filesystem.rs:fmt
# randd — RB rewrote the entropy model. Upstream's
# `reseed_prng(&mut self, entropy: &[u8])` was replaced by a pooled
# `reseed_from_pool(&mut self)` (mix_seed / create_rdrand_seed / RESEED_INTERVAL).
randd/src/main.rs:reseed_prng