Changeset 1bb43d5 in mainline
- Timestamp:
- 2018-10-04T09:00:21Z (6 years ago)
- 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)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/grub/grub-update.sh
r6404aca r1bb43d5 45 45 platform="$2" 46 46 47 ./configure --prefix="$builddir/$target-$platform" --target="$target" --with-platform="$platform" || exit 147 ./configure --prefix="$builddir/$target-$platform" --target="$target" --with-platform="$platform" --disable-werror || exit 1 48 48 make clean || exit 1 49 49 make install || exit 1 -
tools/grub/mkimage.sh
r6404aca r1bb43d5 44 44 --prefix "$grub_mod_dir" --output "$grub_mod_dir/core.img" \ 45 45 --format 'i386-pc' --compression 'auto' --config "$orig_dir/load.cfg" \ 46 " minix3" "part_msdos" "biosdisk" "search_fs_uuid"46 "ext2" "part_msdos" "biosdisk" "search_fs_uuid" -
uspace/app/sysinst/sysinst.c
r6404aca r1bb43d5 62 62 #define DEFAULT_DEV "devices/\\hw\\pci0\\00:01.0\\ata-c1\\d0" 63 63 //#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" 64 66 65 67 #define MOUNT_POINT "/inst" … … 135 137 pspec.capacity = cap; 136 138 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 */ 138 140 pspec.mountp = MOUNT_POINT; 141 pspec.label = INST_VOL_LABEL; 139 142 140 143 rc = fdisk_part_create(fdev, &pspec, &part);
Note:
See TracChangeset
for help on using the changeset viewer.