forked from martijnvanbrummelen/nwipe
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Populates device block size before hidden sector
Now populates the block size (physical) before the hidden sector determination function runs. The naming of block/sector can be very confusing in nwipe. So I have created a device_phy_sector_size in the drive context, so we have ->device_sector_size // logical sector size ->device_phys_sector_size // physical sector size ->device_block_size // Usually the same as logical size but could be increased by nwipe to encompass multiple logical sectors, i.e a block of sectors
- Loading branch information
1 parent
c007d0f
commit d6f7238
Showing
5 changed files
with
23 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* used by configure to dynamically assign those values | ||
* to documentation files. | ||
*/ | ||
const char* version_string = "0.35.7"; | ||
const char* version_string = "0.35.8"; | ||
const char* program_name = "nwipe"; | ||
const char* author_name = "Martijn van Brummelen"; | ||
const char* email_address = "[email protected]"; | ||
|
@@ -14,4 +14,4 @@ Modifications to original dwipe Copyright Andy Beverley <[email protected]>\n\ | |
This is free software; see the source for copying conditions.\n\ | ||
There is NO warranty; not even for MERCHANTABILITY or FITNESS\n\ | ||
FOR A PARTICULAR PURPOSE.\n"; | ||
const char* banner = "nwipe 0.35.7"; | ||
const char* banner = "nwipe 0.35.8"; |