Difference between revisions of "Quartz64 Installing Arch Linux ARM"

Jump to navigation Jump to search
(Add instructions for packaging the thing yourself due to the current scare)
m (Using 'unit X' is only needed when you don't specify a unit, so add a unit to the only one which hadn't and remove 'unit X')
Line 13: Line 13:
Create the partitions for loader and u-boot:
Create the partitions for loader and u-boot:
   
   
  # parted -s /dev/sdb unit s mkpart loader 64 8MiB
  # parted -s /dev/sdb mkpart loader 64s 8MiB
  # parted -s /dev/sdb unit s mkpart uboot 8MiB 16MiB
  # parted -s /dev/sdb mkpart uboot 8MiB 16MiB


Create the partition for u-boot's environment:
Create the partition for u-boot's environment:


  # parted -s /dev/sdb unit s mkpart env 16MiB 32MiB
  # parted -s /dev/sdb mkpart env 16MiB 32MiB


Create the "efi" boot partition and mark it as bootable:
Create the "efi" boot partition and mark it as bootable:


  # parted -s /dev/sdb unit s mkpart efi fat32 32MiB 544MiB
  # parted -s /dev/sdb mkpart efi fat32 32MiB 544MiB
  # parted -s /dev/sdb set 4 boot on
  # parted -s /dev/sdb set 4 boot on


Create the root partition:
Create the root partition:


  # parted -s /dev/sdb unit s mkpart root ext4 544MiB 100%
  # parted -s /dev/sdb mkpart root ext4 544MiB 100%


=== Creating The File Systems ===
=== Creating The File Systems ===