summaryrefslogtreecommitdiff
path: root/setup-disk.in
AgeCommit message (Collapse)Author
2014-07-17setup-disk: use ERE for sed regexpNatanael Copa
the use of \+ is a GNU BRE extension that is not supported in musl.
2014-06-20setup-disk: fix location for mkinitfs featuresNatanael Copa
2014-06-20Fixes #3060, really :)Francesco Colista
2014-06-20Fixes #3060Francesco Colista
2014-05-29setup-disk: fix progressbarNatanael Copa
apk now sends progressbar to stdout instead of stderr
2014-05-19setup-disk: fix partitioning of HP raid array (cciss)Natanael Copa
ref #2893
2014-04-23setup-disk: comment out local repositoriesNatanael Copa
fixes #2540
2014-04-23setup-disk: add magic environemnt var ERASE_DISKS as confirmationNatanael Copa
Add a magic environment variable ERASE_DISKS as confirmation for erasing disks. This is useful for scripted installs. fixes #2863
2013-10-24setup-disk: add swap to /etc/fstabNatanael Copa
2013-10-02setup-disk: fix running update-extlinux in chrootNatanael Copa
When installling the packages in new root, the update-extlinux trigger script will be executed. We make sure this does not fail by: - run extlinux --install before we install packages - mount /dev and /proc for the chroot - temprorary disable grsecurity's chroot_caps
2013-07-03various: use long-form apk optionsDubiousjim
2012-06-21setup-disk: fix install of xen dom0Natanael Copa
ref #1213
2012-03-05setup-disk: improve the usage help textNatanael Copa
Thanks to Jim Pryor for the very useful feedback.
2012-03-05setup-disk: cleanup. init_progs always installs syslinuxNatanael Copa
2012-03-05setup-disk: use SYSROOT env var instead of hardcoded /mntNatanael Copa
2012-03-05setup-disk: cleanup. remove raid_part_type variableNatanael Copa
Not needed.
2012-03-05setup-disk: cleanup. remove unused variableNatanael Copa
2012-03-05setup-disk: fix comment for setup_boot_devNatanael Copa
2012-03-05setup-disk: cleanup. don't create unused /tmp/sfdisk.outNatanael Copa
2012-03-05setup-disk: cleanup. fix misleading commentNatanael Copa
Thanks to Jim Pryor for pointing this out.
2012-03-05setup-disk: fix unmount logicNatanael Copa
we need anchor on both sides. Thanks to Jim Pryor for pointing this out.
2012-03-05setup-disk: cleanup. make sure we don't add raid modules more than onceNatanael Copa
2012-03-05setup-disk: cleanup. use shell manipulation instead of sedNatanael Copa
2012-03-05setup-disk: cleanup. clarify what raidopt and raidmod doesNatanael Copa
2012-03-05setup-disk: monor code cleanupNatanael Copa
Make it a bit more clear what is going on by moving initialization of mnt_boot to same place for both cases. And remove redundant code line. Thanks to Jim Pryor for pointing this out.
2012-03-05setup-disk: fix enumerate_fstabNatanael Copa
fix case when mountpoint is a prefix of other mount. For example: setup-disk /d which would also match /dev and create various bogus entries in the generated fstab. Thanks to Jim Pryor for pointing this out.
2012-03-05setup-disk: allow override filesystem for /var via VARFSNatanael Copa
Thanks to Jim Pryor for pointing this out.
2012-03-02setup-disk: tell user that MBR might need be set manullyNatanael Copa
fixes #715
2011-11-08setup-disk: fix booting from cciss devicesNatanael Copa
2011-11-07setup-disk: fix compaq server disk arrays /dev/cciss/c0d0 style disksNatanael Copa
2011-10-26setup-disk: fix swap size calculationNatanael Copa
use 2 * total ram or maximum 1/4 of the smallest disk. don't use more than 4G swap if swap is smaller than 64MB then don't bother create swap at all. ref #732
2011-10-24setup-disk: use update-extlinux to generate the extlinux.confNatanael Copa
2011-07-31setup-alpine: only run setup-apklub if sys disk mode wasnt selectedJeff Bilyk
2011-06-07setup-disk: fix data-only mode with no lvm and no raidNatanael Copa
ref #678
2011-06-06setup-alpine: Use 'none' as default diskNatanael Copa
ref #674
2011-06-06setup-disk: install syslinux when installing on mounted dirNatanael Copa
ref #673
2011-05-03setup-disk: add raidmodules to /etc/modules if neededNatanael Copa
2011-05-02setup-disk: allow entering more than one disk at promptNatanael Copa
So you can specify more than one disk
2011-05-02setup-disk: some bugfixesNatanael Copa
- always install syslinux - add lvm to runlevel boot - fix local variable $size - dont display the /dev/ prefix on disk info
2011-04-29setup-disk: improve help textNatanael Copa
2011-04-29setup-disk: show more info about diskNatanael Copa
2011-04-27setup-disk: don't complain about invalid disk mode when disk is 'none'Natanael Copa
and fix help to include LVM option ref #592
2011-04-14setup-disk, setup-timezone: improved messagesMatt Smith
2011-04-11setup-disk: use the term 'sys' instead of 'root'.Natanael Copa
It makes more sense to talk about a system disk and data disk.
2011-04-11setup-disk: fix mbr when creating partitionsNatanael Copa
We only want fiddle with MBR if we use new disks and not if we install on a mounted root
2011-04-08setup-disk: remove obsolete codeNatanael Copa
2011-04-08setup-disk: only enable LVM if -L is specifiedNatanael Copa
2011-04-08setup-disk: support for lvm on top of raidNatanael Copa
2011-04-08setup-disk: add -m option for sepcifying install modeNatanael Copa
So we dont need to ask. Also fix help message.
2011-04-08setup-disk: automatically set up raid if multiple disks are specifiedNatanael Copa
If you run 'setup-disk /dev/sda /dev/sdb ...' then automatically set up raid, even if no -r option was specified. If more than 2 disks are specified then use raid5, otherwise use raid1.