blob: 106173000266132eca4e10bf1967f6efdf373010 (
plain)
1
2
3
4
5
6
7
8
|
If you build "plainroot" flat ext3 images during development, you might be able
to save time by using rsync instead of dd:
sudo mount /dev/sdb1 /mnt
sudo rsync -arv ./binary/ /mnt/
sudo umount /mnt
|