Adds a C++ utility for filling a hard drive via block device

This commit is contained in:
zontreck 2025-02-02 15:07:57 -07:00
parent 03e2cd1bc6
commit 1bf7da7479
5 changed files with 198 additions and 0 deletions

View file

@ -10,3 +10,10 @@ install(TARGETS vsleep-cpp
add_executable(pause-cpp pause.cpp)
install(TARGETS pause-cpp RUNTIME DESTINATION /usr/bin)
add_executable(filldisk-cpp filldisk.cpp)
install(TARGETS filldisk-cpp RUNTIME DESTINATION /usr/sbin)
add_executable(filldisk filldisk.c)
install(TARGETS filldisk RUNTIME DESTINATION /usr/sbin)