Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion devsoak.readme
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Short: Destructive trackdisk driver soak tester
Author: simond@irrelevant.org (Simon Dick)
Uploader: simond@irrelevant.org (Simon Dick)
Type: dev/misc
Version: 1.0
Version: 1.1
Architecture: m68k-amigaos >= 1.3
Requires: 68000

Expand Down Expand Up @@ -33,6 +33,14 @@ whether a driver accepts a command. It complements devtest
(https://github.com/cdhooper/amiga_devtest), which probes acceptance and
sweeps whole devices.

New in 1.1: partition mode. Point devsoak at a mounted DOS device by
name - devsoak DH1: -d ... - and the partition's own extent becomes the
test range: no unit number or sector arithmetic to get wrong, and
nothing outside that partition is ever written. The filesystem is
inhibited for the run and released afterwards. A partition carrying a
live mounted volume must be confirmed by typing the volume's name back;
-y does not bypass that one check.

This release ships:

devsoak - the tester, a single static binary
Expand All @@ -54,6 +62,7 @@ Quick start
-----------
devsoak scsi.device 0 -d -r 0,8M -t 30s -y
devsoak lide.device 0 -d -r 0,64M -w 4 -q 4 -t 8h -A 15 -y
devsoak DH1: -d -t 8h -y (partition mode: DH1: is the range)

See https://sidick.github.io/devsoak/ for the full CLI reference, the
quirks-file format, and the fingerprinting workflow.
Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
*
* DEVSOAK_VERSION_DATE is the AmigaOS $VER date, <dd>.<mm>.<yyyy> per
* https://wiki.amigaos.net/wiki/Version_Strings */
#define DEVSOAK_VERSION "1.0"
#define DEVSOAK_VERSION_DATE "02.09.2026"
#define DEVSOAK_VERSION "1.1"
#define DEVSOAK_VERSION_DATE "06.09.2026"

/* Embedded AmigaOS version string, findable by the shell `Version` command.
* The leading "\0" guards against an adjacent string in the binary running
Expand Down