summaryrefslogtreecommitdiff
path: root/distrib
AgeCommit message (Collapse)Author
2017-05-01move some binutils files from gcc sets back to md setsJonathan Gray
ok deraadt@
2017-05-01Apply same change of defaultroute handling as in r1.179 of netstart.Robert Peichaer
Now that routes are automatically G/C with the address they are attached to there's no reason to duplicate the kernel's job.
2017-05-01Remove last remnants of rtsol. IPv6 autoconfiguration of interfacesRobert Peichaer
is now done in ifstart(). Replace rtsolif with a boolean variable V6_AUTOCONF. Replace dhcpif with a boolean variable V4_DHCPCONF. Both are later used to decide whether or not to configre defaultroutes from /etc/mygate. OK krw@
2017-05-01move more gcc files to gcc setsJonathan Gray
ok deraadt@
2017-04-30syncTheo de Raadt
2017-04-30syncTheo de Raadt
2017-04-30syncTheo de Raadt
2017-04-29put clang headers into clang setsJonathan Gray
ok deraadt@
2017-04-29syncTheo de Raadt
2017-04-26Install arm64 manpages: eeprom(8), MAKEDEV(8). ok phessler kettenisStuart Henderson
2017-04-25Unbreak multiple interface configurations like trunk or carp. EnsureRobert Peichaer
that the noglob option is disabled at the end of parse_hn_line() and ifstart().
2017-04-24Replace 'rtsol' with 'autoconf' to reflect the change in the installer.Robert Peichaer
2017-04-24Introduce a new function parse_hn_line() that replaces the existingRobert Peichaer
hostname.if(5) parsing code in ifstart(). - change v6_config() - replace rtsol with autoconf in "IPv6 addres for <if>" question - write 'inet6 autoconf" to hostname.if file instead of rtsol - add parse_hn_line() function with installer specific changes - skip shell command and bridge config lines - skip inet6 config (incl. dest lines) if there's no inet6 support - skip dhcp config if there's no dhclient - change ifstart() to use parse_hn_line() Discussed with and positive feedback from many 'commit' deraadt@ conditional OK sthen@ (untested)
2017-04-22syncTheo de Raadt
2017-04-22do not leave temp files after the diffing is doneRobert Nagy
2017-04-22Add a small shell script to be used by syspatch to diff the fake rootRobert Nagy
directories for changes due to the fact that we have to do some "magic" to figure out if things have really changed.
2017-04-22rework the syspatch makefile and do complete builds for each errataRobert Nagy
and diff those instead of doing partial builds of affected directories
2017-04-20syncTheo de Raadt
2017-04-20syncTheo de Raadt
2017-04-19syncTheo de Raadt
2017-04-18same hack logic as maketars. noticed by landry@/semarie@Marc Espie
2017-04-18add a clang comp list for arm64Jonathan Gray
2017-04-18sortTheo de Raadt
2017-04-18put clang binaries into clang setTheo de Raadt
2017-04-17create a gross mechanism that can handle gcc-only, clang-only,Theo de Raadt
and gcc+clang architectures with kettenis
2017-04-16syncTheo de Raadt
2017-04-11Ensure that the version part of $_url_base is correctly removed byRobert Peichaer
using $VNAME (x.y) instead of $VERSION (xy). This fixes the problem that the version part ended up in installurl which is wrong anyway and also confuses pkg_add. Thanks to florian@ and trondd at kagu-tsuchi dot com for reporting this. OK tb@
2017-04-11syncTheo de Raadt
2017-04-10syncTheo de Raadt
2017-04-10syncTheo de Raadt
2017-04-10syncJonathan Gray
2017-04-10syncTheo de Raadt
2017-04-07Minimize differences in ifstart() function between netstart andRobert Peichaer
install.sub which makes it easier to spot changes in the future. - comments and formatting - quotes on assignments are not needed (netstart) - remove stray space in test (netstart) - use $file variable with while-loop (netstart) - although valid, instead of i use $i in arithmetic test (install.sub) OK krw@, tb@ Looks good deraadt@
2017-04-07Align comments of ifstart() function in netstart and install.sub.Robert Peichaer
2017-04-07Sync variable names with netstart version of stripcom().Robert Peichaer
Use $_file variable instead of $1 with the wile-loop.
2017-04-07Align comments of stripcom() function in netstart and install.sub.Robert Peichaer
2017-04-07Extend the information shown by diskinfo() to help to identifyRobert Peichaer
disks. Extract the disk information enclosed in <> and the NAA from the last matching dmesg line. Useful if there are multiple identically sized disk of the same type. Suggested by jirib at devio dot us Discussed with deraadt@
2017-04-05syncTheo de Raadt
2017-04-04Ensure, that during upgrades, the default for the "Location of sets"Robert Peichaer
question is set to http if /etc/installurl exists and override the install method information from the cgi server. 'makes sense' deraadt@
2017-04-02add overdrive 1000Jonathan Gray
2017-03-31The default for the "Server directory?" question can possibly comeRobert Peichaer
from either what information is extracted from the cgi server or from installurl(5). Otherwise a sane default is used. Based on what server (HTTP_SERVER) is provided by the user decide on what source to choose from for the default. At the end of install_http() use the url from the cgi server as the base for what's written to /etc/installurl if an official mirror was used. Otherwise trim _url_base and remove the architecture and snapshots or version part. This fixes the problem reported by phessler@ which exposed how fragile the current logic for this was after recent changes. At this time of the release cycle the kernel presents itself as release kernel, but we're still pre-release and the sets are still in the snapshots directory on the mirrors. This was confusing the installer script. Thanks to phessler@ for finding this and testing. Special thanks to tb@ who imposed on himself to try to understand and review the diffs. OK tb@, phessler@ (on a similar diff) 'commit when your are happy' deraadt@
2017-03-30skip floppyB until more space is foundTheo de Raadt
2017-03-30syncTheo de Raadt
2017-03-30syncTheo de Raadt
2017-03-26syncTheo Buehler
2017-03-25mention Opteron A1100 systemsJonathan Gray
2017-03-19sync set sizesJonathan Gray
2017-03-17Enable dhcrelay6(8).Rafael Zalamena
ok deraadt@
2017-03-13Remove leading slashes from response to ensure a proper url.Robert Peichaer
Feedback and OK halex@ tb@
2017-03-12<struct.h> is unused and should not be used. Delete it.Philip Guenther
ok millert@ deraadt@ kettenis@