Changeset 1bb43d5 in mainline for uspace/app/sysinst/sysinst.c


Ignore:
Timestamp:
2018-10-04T09:00:21Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f0f8787
Parents:
6404aca
git-author:
Jiri Svoboda <jiri@…> (2018-10-03 20:59:17)
git-committer:
Jiri Svoboda <jiri@…> (2018-10-04 09:00:21)
Message:

Switch installation file system from MINIX to Ext4 (well, Ext2, actually).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sysinst/sysinst.c

    r6404aca r1bb43d5  
    6262#define DEFAULT_DEV "devices/\\hw\\pci0\\00:01.0\\ata-c1\\d0"
    6363//#define DEFAULT_DEV "devices/\\hw\\pci0\\00:01.2\\uhci_rh\\usb01_a1\\mass-storage0\\l0"
     64/** Volume label for the new file system */
     65#define INST_VOL_LABEL "HelenOS"
    6466
    6567#define MOUNT_POINT "/inst"
     
    135137        pspec.capacity = cap;
    136138        pspec.pkind = lpk_primary;
    137         pspec.fstype = fs_minix; /* Cannot be changed without modifying core.img */
     139        pspec.fstype = fs_ext4; /* Cannot be changed without modifying core.img */
    138140        pspec.mountp = MOUNT_POINT;
     141        pspec.label = INST_VOL_LABEL;
    139142
    140143        rc = fdisk_part_create(fdev, &pspec, &part);
Note: See TracChangeset for help on using the changeset viewer.