Commit 8bb5820b4caf485a7ca3fdee33b9849cd2a64c4c
Committed by
Phil Elwell
1 parent
e5e49940
Use pkg-config to locate libusb-1.0
Showing
3 changed files
with
6 additions
and
4 deletions
Makefile
Readme.md
| ... | ... | @@ -28,13 +28,15 @@ From a macOS machine, you can also run usbboot, just follow the same steps: |
| 28 | 28 | |
| 29 | 29 | 1. Clone the `usbboot` repository |
| 30 | 30 | 2. Install `libusb` (`brew install libusb`) |
| 31 | -3. Build using make | |
| 32 | -4. Run the binary | |
| 31 | +3. Install `pkg-config` (`brew install pkg-config`) | |
| 32 | +4. Build using make | |
| 33 | +5. Run the binary | |
| 33 | 34 | |
| 34 | 35 | ``` |
| 35 | 36 | git clone --depth=1 https://github.com/raspberrypi/usbboot |
| 36 | 37 | cd usbboot |
| 37 | 38 | brew install libusb |
| 39 | +brew install pkg-config | |
| 38 | 40 | make |
| 39 | 41 | sudo ./rpiboot |
| 40 | 42 | ``` | ... | ... |