Skip to content

Commit

Permalink
Merge pull request #2069 from ghaerr/fdisk
Browse files Browse the repository at this point in the history
[cmds] Have fdisk check for MBR-capable block device for safety
  • Loading branch information
ghaerr authored Oct 7, 2024
2 parents adaa9a2 + 7729060 commit 421c2a5
Show file tree
Hide file tree
Showing 3 changed files with 277 additions and 269 deletions.
4 changes: 2 additions & 2 deletions elkscmd/disk_utils/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ df: df.o $(TINYPRINTF)
fsck: fsck.o
$(LD) $(LDFLAGS) -o fsck -maout-heap=0xffff fsck.o $(LDLIBS)

fdisk: fdisk.o
$(LD) $(LDFLAGS) -o fdisk fdisk.o $(LDLIBS)
fdisk: fdisk.o $(TINYPRINTF)
$(LD) $(LDFLAGS) -o fdisk fdisk.o $(TINYPRINTF) $(LDLIBS)

mkfs: mkfs.o $(TINYPRINTF)
$(LD) $(LDFLAGS) -o mkfs mkfs.o $(TINYPRINTF) $(LDLIBS)
Expand Down
Loading

0 comments on commit 421c2a5

Please sign in to comment.