Changes between Version 3 and Version 4 of ventana/bootloader/falcon-mode
- Timestamp:
- 04/17/2019 09:28:18 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ventana/bootloader/falcon-mode
v3 v4 136 136 2. prepare the micro-SD per the specifications above: 137 137 {{{ 138 DEV=/dev/sdc 138 DEV=/dev/sdc # adjust per your system! 139 MNT=/mnt # adjust per your system! 139 140 # zero out 1MB of device 140 141 sudo dd if=/dev/zero of=$DEV count=1 bs=1M oflag=sync status=none && sync … … 148 149 sudo mkfs.ext4 -O ^64bit -L root ${DEV}1 149 150 # mount the partition 150 sudo udisks --mount ${DEV}1151 sudo mount ${DEV}1 $MNT 151 152 # extract filesystem 152 sudo tar xvf rootfs.tar.gz -C /media/root153 # flush andunmount154 s ync && sudo umount /media/root153 sudo tar xvf rootfs.tar.gz -C $MNT/ 154 # unmount 155 sudo umount ${DEV}1 155 156 }}} 156 157 3. Boot the board with the prepared micro-SD and break out in U-Boot::