summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 54af936..dca46a3 100644
--- a/Makefile
+++ b/Makefile
@@ -21,6 +21,9 @@ IMAGE_SIZE=1474560
FONT_DATA_START=25600
+USB_STICK=/dev/sdc
+
+
############ flags ############
CFLAGS=-ffreestanding -std=gnu99 -m32 -fno-asynchronous-unwind-tables -O0
@@ -105,8 +108,8 @@ clean:
############ test stuff ############
acer: FoolOS.img
- cat FoolOS.img > /dev/sdf && sync
- xxd /dev/sdf | head -n 50
+ cat FoolOS.img > $(USB_STICK) && sync
+ xxd $(USB_STICK) | head -n 50