Skip to content

Commit

Permalink
ARM: u-boot: work around dd issues on OSX
Browse files Browse the repository at this point in the history
The oflag parameter does not exist on OSX, and neither on BSD. Just
use "cat" to append instead.
  • Loading branch information
Ithamar committed Sep 5, 2014
1 parent 62f4f05 commit 72b52fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/system/boot/platform/u-boot/Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ actions BuildUBootSDImage1
$(RM) $(1).mtools
$(RM) uEnv.txt
# Add haiku bootstrap partition to MMC image
dd if=$(2[0]) of=$(1) conv=notrunc oflag=append bs=1M
cat $(2[0]) >> $(1)
}

# uimage targets
Expand Down

0 comments on commit 72b52fd

Please sign in to comment.