summaryrefslogtreecommitdiff
path: root/distrib
AgeCommit message (Collapse)Author
2016-04-11- In isin(), quote $_b to ensure it's treated as string not as pattern.Robert Peichaer
- Always quote the first argument to isin() OK halex@, krw@
2016-04-11Tweak bsort():Robert Peichaer
- make it clear in comment that it returns a unique list - shift is only possible if argc > 0, otherwise return - quote "$_b" in equality test forcing possible patterns being treated as strings OK halex@, krw@
2016-04-09Remove _tz as intermediate variable and use CGI_TZ directly.Robert Peichaer
Feedback from and OK halex@ OK krw@ for a similar diff
2016-04-09Use _if for a single interface name and _ifs for a list of interfaceRobert Peichaer
names instead of _ifdev and _ifdevs. OK krw@ halex@
2016-04-08Use _if instead of _ifs as variable name for single interface names.Robert Peichaer
OK krw@, halex@
2016-04-08Rename getdevname() to get_dkdev_name() to better reflect the actualRobert Peichaer
purpose and simplify the logic to remove the partition information from the device name. With help from and OK halex@, krw@
2016-04-08Directly assign device name to rootdisk with modified sed pattern.Robert Peichaer
With help from and OK halex@ OK krw@
2016-04-06syncJonathan Gray
2016-04-03syncJonathan Gray
2016-04-02Simplify defining the various set lists.Robert Peichaer
Feedback from and OK halex@ OK krw@
2016-04-02Remove unused variable.Robert Peichaer
OK krw@
2016-04-02forgot to cvs rm locally in previous commitRobert Peichaer
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-04-01syncJonathan Gray
2016-03-31remove files that are not built on hppa64Jonathan Gray
2016-03-30syncTheo de Raadt
2016-03-30syncTheo de Raadt
2016-03-30for some time now mandoc has not required MLINKS to functionJason McIntyre
correctly - logically complete that now by removing MLINKS from base; authors need only to ensure there is an entry in NAME for any function/ util being added. MLINKS will still work, and remain for perl to ease upgrades; ok nicm (curses) bcook (ssl) ok schwarze, who provided a lot of feedback and assistance ok tb natano jung
2016-03-30syncTheo de Raadt
2016-03-29syncTheo de Raadt
2016-03-29syncTheo de Raadt
2016-03-28all arch are dynamic nowTheo de Raadt
2016-03-27Switch from the solidrun i.mx6 u-boot to mainline u-boot on cubox i.Jonathan Gray
The offset of u-boot.img in the disk image changes to be the same as wandboard.
2016-03-27use MLO not mlo to match the names generated by u-boot buildsJonathan Gray
2016-03-24syncTheo de Raadt
2016-03-22syncTheo de Raadt
2016-03-20syncTheo de Raadt
2016-03-20syncTheo de Raadt
2016-03-16syncTheo de Raadt
2016-03-15'accomodate' -> 'accommodate' in comments.Kenneth R Westerback
Started by diff from Mical Mazurek.
2016-03-15Remove now unused legacy uiomovei() function.Stefan Kempf
All its callers got reviewed and converted to use uiomove() properly. ok deraadt@
2016-03-09syncTheo de Raadt
2016-03-09We are done providing support for the vax.Theo de Raadt
lots of agreement.
2016-03-08syncTheo de Raadt
2016-03-07syncTheo de Raadt
2016-03-06syncTheo de Raadt
2016-03-05missed 'sed -i'Robert Peichaer
OK halex@
2016-03-04remove CSRG BSD-licensed mknod builtin code which was previously used toTheo de Raadt
accelerate install/upgrade time MAKEDEV runs. That allows ramdisk ksh to be pledged, without needing "dpath". We'll solve the performance issues a different way (soon). ok otto espie natano tb tobiasu rpe
2016-03-03Correct OpenBSD::Pledge in set list to allow vax release to buildAndrew Fresh
from Sigi Rudzio <sigirudzio gmail.com>
2016-03-03syncTheo de Raadt
2016-03-02synTheo de Raadt
2016-03-02syncTheo de Raadt
2016-02-28syncStuart Henderson
2016-02-27Cleanup the list of usernames that are rejected during installation.Robert Peichaer
- sendmail, named, popa3d are not part of base anymore and their ports versions use _<username>. - _tftp_proxy and _ftp_proxy are used instead of the proxy user. OK ajacoutot@
2016-02-27Shorter version that does the same.Robert Peichaer
Change description to better match the purpose of this function. OK halex@
2016-02-23In the great pdisk churn we lost a pdisk pecularity in disk nameKenneth R Westerback
handling. "pdisk -l /dev/wd0c" used to work as well as "pdisk -l /dev/rwd0c". The new, more fdisk-like, code does not accept the former. Adjust the install scripts to eliminate the use of "/dev/wd0c" constructs and, like fdisk, simply use 'wd0'. Fixes macppc installs to HFS partitioned disks. Discovered and diff by rpe@. ok rpe@ deraadt@
2016-02-20Combine two sed calls into one.Robert Peichaer
OK krw@, halex@
2016-02-20remove stray semicolonRobert Peichaer
OK krw@, halex@
2016-02-16Mention UEFI/GPT, fix some weird spacing, try to adjust 'partitioning'Kenneth R Westerback
verbiage to make more sense overall. ok rpe@
2016-02-12- re-order the (I)nstall, (U)pgrade, (A)utoinstall part to match whatRobert Peichaer
the installer shows and what the subsequent text describes. - re-phrase the part about ssh logins as root. The installer now asks "Allow root ssh login? (yes, no, prohibit-password)". Previously it was "Since you set up a user, disable sshd(8) logins to root?" OK krw@, sthen@