Changes between Version 6 and Version 7 of ventana/third_party_linux
- Timestamp:
- 04/17/2019 09:29:19 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ventana/third_party_linux
v6 v7 89 89 3. Create image on block storage device. For example, using /dev/sdc: 90 90 {{{#!bash 91 DEVICE=/dev/sdc 91 DEVICE=/dev/sdc # adjust per your system! 92 MNT=/mnt # adjust per your system! 92 93 # unmount all auto-mounted partitions for this device 93 94 sudo umount ${DEVICE}? … … 96 97 sudo mkfs.ext4 -O ^64bit -L UBUNTU ${DEVICE}1 97 98 # mount partition 98 sudo udisks --mount ${DEVICE}199 sudo mount ${DEVICE}1 $MNT 99 100 # untar the root filesystem downloaded (modify --strip-components parameter to strip subdirs as necessary depending on archive) 100 sudo tar --strip-components=1 --numeric-owner -xvzf linaro-raring-alip-20130826-474.tar.gz -C /media/UBUNTU/101 sudo tar --strip-components=1 --numeric-owner -xvzf linaro-raring-alip-20130826-474.tar.gz -C $MNT/ 101 102 # untar the Ventana kernel, modules, device-tree from Gateworks kernel archive 102 sudo tar --numeric-owner -C /media/UBUNTU/ -xvzf rootfs.tar.gz ./boot103 sudo tar --numeric-owner -C /media/UBUNTU/ -xvzf rootfs.tar.gz ./lib/modules/103 sudo tar --numeric-owner -C $MNT/ -xvzf rootfs.tar.gz ./boot 104 sudo tar --numeric-owner -C $MNT/ -xvzf rootfs.tar.gz ./lib/modules/ 104 105 # unmount the disk 105 106 sudo umount ${DEVICE}1