Skip to content

Commit

Permalink
rename stream-helper.sh to bmap-writer-stream.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
embetrix committed Jan 30, 2025
1 parent 16fc0ba commit 7bfb0ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ curl -u user:password sftp://hostname/path/to/image.bmap > image.bmap
curl -u user:password sftp://hostname/path/to/image.gz | bmap-writer - image.bmap /dev/sdX
```

Note: the [stream-helper.sh](stream-helper.sh) script can be used for stream processing tasks.
Note: the [bmap-writer-stream.sh](bmap-writer-stream.sh) script can be used for stream processing tasks.

## Yocto Integration

Expand Down
2 changes: 1 addition & 1 deletion stream-helper.sh → bmap-writer-stream.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e

export PATH=$PWD:$PATH

Expand Down
2 changes: 1 addition & 1 deletion bmap-writer-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,6 @@ echo "## Write the file with bmap-writer and zstd from HTTP server"
python3 -m http.server -d $(pwd) -b 127.0.0.1 8987 &
SERVER_PID=$!
sleep 2
stream-helper.sh http://127.0.0.1:8987/test.img.zst test5.zst.img.out
bmap-writer-stream.sh http://127.0.0.1:8987/test.img.zst test5.zst.img.out
cmp test.img.out test5.zst.img.out
kill $SERVER_PID

0 comments on commit 7bfb0ca

Please sign in to comment.