Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-07 | eliminate differences between all the list files as much as | Theo de Raadt | |
possible, and remove the failed previous attempts at sharing in ./miniroot and ./ramdisk. maybe now that differences are eliminated we can start a new sharing effort? i dunno.. | |||
2019-06-02 | first few small steps towards unification | Theo de Raadt | |
2019-05-13 | Add tee(1) to the ramdisk filesystem and use it to provide both a | Christian Weisgerber | |
moving progress bar during auto upgrade/install and a clean log afterwards. ok deraadt@ | |||
2019-05-03 | Further removal of differences (using install instead of cp, sorting | Theo de Raadt | |
chunks in a specified order, using a few variables, performing bsd.rd to bsd.gz conversion as similar as possible) | |||
2019-05-01 | Do not need reacharound back to our own obj directory, pretty silly | Theo de Raadt | |
2019-04-30 | repair more trivial differences | Theo de Raadt | |
2019-04-30 | rm is in /bin, no need to specify | Theo de Raadt | |
2019-04-30 | Every Makefile on every architecture had deviated in unique ways. | Theo de Raadt | |
Eliminate many more differences. When it makes sense, build bsd.rd and miniroot/ramdisk.fs and cd.iso in the same directory. More steps coming after this.. | |||
2019-04-29 | TOPDIR and TOP are not neccessary. | Theo de Raadt | |
2019-04-29 | remove the abstraction REV on top of abstraction OSrev which is always | Theo de Raadt | |
the sme. | |||
2019-04-28 | cleanup the situation around "df -i" | Theo de Raadt | |
2019-04-28 | CBIN variable is also pointless, it is always "instbin". Rather than | Theo de Raadt | |
having two mysterious names, let's settle on one. | |||
2019-04-28 | the BSD_RD variable is pointless | Theo de Raadt | |
2019-04-28 | Use new vnconfig vnd-auto-allocate mode. Resolve some variation between | Theo de Raadt | |
architectures, and start removing some crazy junk that has collected over the years. Being tested on all architectures... ok various people. | |||
2019-04-05 | Use new rdsetroot. | Theo de Raadt | |
2017-11-19 | add growfs(8) to ramdisk | job | |
Some resizing scenarios can be done from within single user mode, but resizing the root partition required you to bring your own growfs(8) binary into the ramdisk environment. This commit adds growfs(8) to the ramdisks (the ones that don't have space constraints) to simplify such operations. OK deraadt@ | |||
2017-07-08 | hook up slaacd to the installer on media where we have INET6 | Florian Obser | |
2017-01-22 | Whitespaces ... | Robert Peichaer | |
2017-01-08 | Use makefs to build bsd.rd. ok deraadt | Martin Natano | |
2016-10-14 | Use new kernel compile method for ramdisks, de-escalating to $BUILDUSER | Theo de Raadt | |
as required. much help from natano and tb. | |||
2016-09-17 | ping6(8) is now a hardlink to ping(8). | Florian Obser | |
The instbin stuff looks good to deraadt@ | |||
2016-09-13 | Provide a stripped down group file for the install media. | Robert Peichaer | |
Saves precious 896 bytes as a side effect. OK deraadt | |||
2016-09-04 | Move files created by root during install/upgrade in a subdir of | Robert Peichaer | |
/tmp with proper permissions so that unprivileged programs can not tamper with them. positive feedback from deraadt OK halex | |||
2016-09-04 | Move files created by root during install/upgrade in a subdir of | Robert Peichaer | |
/tmp with proper permissions so that unprivileged programs can not tamper with them. positive feedback from deraadt OK halex | |||
2016-09-03 | Enable a stripped down version of doas(1) on the install media. | Robert Peichaer | |
OK halex, tb, deraadt | |||
2016-04-02 | - merge install.sh into install.sub as do_install() | Robert Peichaer | |
- merge upgrade.sh into install.sub as do_upgrade() - delete install.sh and upgrade.sh - make install.sub executable - turn install and upgrade into symbolic links to install.sub - add autoinstall symbolic link to install.sub - change dot.profile to use these symlinks - introduce a -m option to set MODE in install.sub - alternativly set MODE and AUTO depending on PROGNAME - execute the do_{install,upgrade) functions depending on $MODE OK halex@, krw@ 'go for it' deraadt@ | |||
2016-02-08 | If manual disklabel editing is requested during install, don't emit | Kenneth R Westerback | |
verbiage explaining what disklabels are. If you don't know, you should be using (A)uto! ok rpe@ halex@ | |||
2015-12-29 | Change patterns in case-blocks from a*|A* to [aA]* | Robert Peichaer | |
OK halex@ krw@ | |||
2015-12-18 | Introduce a new function disk_has() to inspect a disk if it has a | Robert Peichaer | |
partition-table of a certain type and optionally if it has a partition of a certain type. Use disk_has() in the install.md script to replace all the various "fdisk <disk> | grep <pattern>" commands greatly simplifying things. positive feedback from sthen@ "time to get it really tested" deraadt@ OK krw@ | |||
2015-12-02 | If (O)penBSD is not offered as a partitioning option, do not accept | Kenneth R Westerback | |
'O*|o*' as a valid response. Ignore it as we do other invalid input. armv7 is special case to be handled separately. Noticed by kettenis@. ok deraadt@ rpe@ | |||
2015-11-09 | Fix commas in "Use (W)hole disk MBR..." question. | Robert Peichaer | |
OK jmc@ krw@ | |||
2015-10-25 | Use 'fdisk -i', instead of 'fdisk -e' with a here document of | Kenneth R Westerback | |
'reinit;update;write;quit'. They've done the same thing for some time now. Tweaks & test from rpe@. ok rpe@ deraadt@ | |||
2015-10-05 | Use MI installboot instead of disklabel -B to put boot blocks on installation | Miod Vallat | |
media. | |||
2015-06-02 | Remove the $FSTABFLAG variable and use -F directly. The installer | Robert Peichaer | |
uses disklabel UIDs unconditionally for a while already. OK krw@ "looks good" deraadt@ | |||
2015-06-02 | Replace | Robert Peichaer | |
[[ -n $(foo | grep 'bar') ]] with foo | grep -q 'bar' OK halex@ krw@ | |||
2015-05-31 | Replace identical code in the MD scripts of the installer with a new | Robert Peichaer | |
MI function disklabel_autolayout() which now handles all aspects of the disklabel auto-layout and autopartitioning case for the root disk. Remove get_disklabel_template() and merge it with the new function. "move forward" deraadt@ | |||
2015-05-04 | Add the new template file based autopartitioning feature of disklabel(8) | Robert Peichaer | |
to the OpenBSD installer. It is available during unattended installation. The template file is fetched from an url, provided as answer to a new question in the response file: URL to autopartitioning template for disklabel = url Original diff from and OK henning@ 'no objection' krw@ | |||
2015-04-13 | pwd_mkdb now fits onto the install media. no more chroot games. | Theo de Raadt | |
2015-04-02 | more -> less; not less -> more | Theo de Raadt | |
2015-03-11 | adjust for removal of expr (and while here, sort all these lists, with the | Theo de Raadt | |
goal of eventually refactoring them) | |||
2015-02-23 | expr no longer needed on media, thanks to halex and todd and rpe | Theo de Raadt | |
2014-12-28 | Build special/encrypt into instbin, to prepare for dropping use of the | Theo de Raadt | |
version in just installed base. | |||
2014-12-27 | SRCDIRS must now always come from distrib/special. A few systems | Theo de Raadt | |
still MD installboot, and we will need to repair those before release, or force them pure -static use by both base and instbin. | |||
2014-12-03 | rtsol(8) is no longer needed on the ramdisks. | Florian Obser | |
OK deraadt@ | |||
2014-07-20 | place sysctl in sorted order; Jean-Philippe Ouellet | Theo de Raadt | |
2014-07-16 | zap trailing newlines; "go for it" deraadt | Okan Demirmen | |
2014-03-03 | use official 5.5 key | Theo de Raadt | |
2014-01-19 | we no long use the /var/hash files, but rely on the SHA256.sig file. | Theo de Raadt | |
We can remove the hashing support. | |||
2014-01-11 | No need for a bin/cpio link on the media, because the pax|tar binary does | Theo de Raadt | |
not support cpio anymore. | |||
2014-01-10 | remove md5 after installing it (with the links to the sha256/512 commands). | Theo de Raadt | |
this is because the md5/sha256/sha512 are in the same binary, found in the md5 directory, but the version on the media lacks md5 support. Understand? |