From 4af394b99e2d4f0bca3d6a21276234ccaeae63f8 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Thu, 7 Feb 2019 14:39:40 +0100 Subject: [PATCH] README: use sdx to prevent mistakes --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b30772c..9c8a433 100644 --- a/README.md +++ b/README.md @@ -24,10 +24,10 @@ go get -u github.com/gokrazy/tools/cmd/gokr-packer ## Overwriting an SD card for the Raspberry Pi 3 -To re-partition and overwrite the SD card `/dev/sdb`, use: +To re-partition and overwrite the SD card `/dev/sdx`, use: ``` -gokr-packer -overwrite=/dev/sdb github.com/gokrazy/hello +gokr-packer -overwrite=/dev/sdx github.com/gokrazy/hello ``` Then, put the SD card into your Raspberry Pi 3 and power it up! Once @@ -76,8 +76,8 @@ currently active file system) when updating. If you’d like to store permanent data (i.e. data which will not be overwritten on the next update), you’ll need to create an ext4 file -system on the last partition. If your SD card is `/dev/sdb`, use -`mkfs.ext4 /dev/sdb4`. +system on the last partition. If your SD card is `/dev/sdx`, use +`mkfs.ext4 /dev/sdx4`. # Customization @@ -111,7 +111,7 @@ liking. When done, pack an image with your own init package: ``` gokr-packer \ -init_pkg=github.com/stapelberg/mediaserver/cmd/init \ - -overwrite=/dev/sdb \ + -overwrite=/dev/sdx \ github.com/gokrazy/hello ```