We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee7688f commit 1fbfe56Copy full SHA for 1fbfe56
Makefile
@@ -77,6 +77,9 @@ ifeq ($(UNAME),Darwin)
77
## macOS uses a different unmounting utility
78
UNMOUNT = diskutil unmount
79
USB_DRIVES = $(shell diskutil list external | grep -s "/dev/" | awk '{print $$1}')
80
+else ifeq ($(UNAME),FreeBSD)
81
+ UNMOUNT = umount
82
+ USB_DRIVES = $(shell usbconfig list | awk -F':' '{print $$1}')
83
else
84
## Handle building for aarch64 on x86_64 Linux/WSL
85
ifeq ($(ARCH),aarch64)
0 commit comments