summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add a few new tips and update some old ones to more modern commandseadler2012-05-091-17/+12
| | | | MFC after: 1 week
* make it easier for users used to a VCS that allows up to be a shortcuteadler2012-05-091-0/+3
| | | | | | | | for update. PR: bin/152856 Approved by: cperciva MFC after: 3 days
* Use a non-tricky approach for building and installing zfsboot sharingmarius2012-05-092-6/+2
| | | | | | the Makefile with boot1. Submitted by: ru
* Add some empty DFS methods for AR5210/AR5211 for now, if DFS is enabledadrian2012-05-096-0/+32
| | | | | | | but these don't exist, the code panics. I should really just add or use a DFS HAL capability before doing this, so the methods wouldn't be needed..
* Document the -c option in --help outputeadler2012-05-091-1/+1
| | | | | | | PR: bin/167463 Submitted by: "Bryan Drewery" <bryan@shatow.net> Approved by: cperciva MFC after: 3 days
* Add some missing files to OLD_FILESeadler2012-05-091-0/+2
| | | | | | | | PR: conf/166460 Submitted by: Jeremy Chadwick <freebsd@jdc.parodius.com> Reviewed by: stable@ Approved by: cperciva MFC after: 2 weeks
* Submitted by: gavin, pjdeadler2012-05-091-2/+2
| | | | | Approved by: cperciva MFC after: 3 days
* Remove reference to non-existent FreeBSD Security Architectureeadler2012-05-091-3/+1
| | | | | Approved by: cperciva MFC after: 3 days
* Clarify error that geli generateseadler2012-05-092-3/+7
| | | | | | | | | | when it finds corrupt data. PR: kern/165695 Submitted by: Robert Simmons <rsimmons0@gmail.com> Reviewed by: pjd Approved by: cperciva MFC after: 1 week
* Revert r235194: 10.8 appears to be a developer preview.pluknet2012-05-091-3/+2
| | | | Reported by: trasz
* Mac OS X 10.8 added (belatedly).pluknet2012-05-091-2/+3
|
* r235154 followup: add stddef.h for offsetofavg2012-05-091-0/+1
| | | | MFC after: 1 month
* i386 zfsloader: rename LIBZFS to LIBZFSBOOTavg2012-05-091-5/+3
| | | | | | ... to avoid name clash with the other libzfs MFC after: 1 month
* i386 boot: consolidate MAXBDDEV definitionavg2012-05-094-5/+2
| | | | MFC after: 1 month
* btxldr: future-proof argument passing from boot1/2-ish to loaderavg2012-05-099-34/+99
| | | | | | | | | | | | | | | Place the arguments at a fixed offset of 0x800 withing the argument area (of size 0x1000). Allow variable size extended arguments first of which should be a size of the extended arguments (including the size parameter). Consolidate all related definitions in a new i386/common/bootargs.h header. Many thanks to jhb and bde for their guidance and reviews. Reviewed by: jhb, bde Approved by: jhb MFC after: 1 month
* sys/boot: add common CTASSERT definitionavg2012-05-093-16/+7
|
* Make is part of the bootstrap path, so we need to guard against thisimp2012-05-091-1/+1
| | | | | not being defined. Otherwise we don't make a new make when the old make is incompatible.
* Implement basic remote PHY support. Remote PHY allows theyongari2012-05-092-52/+444
| | | | | | | | | | | | | | | | | | | | | | controller to perform MDIO type accesses to a remote transceiver using message pages defined through MRBE(multirate backplane ethernet). It's used in blade systems(e.g Dell Blade m610) which are connected to pass-through blades rather than traditional switches. This change directly manipulates firmware's mailboxes to control remote PHY such that it does not use mii(4). Alternatively, as David said, it could be implemented in brgphy(4) by creating a fake PHY and let brgphy(4) do necessary mii accesses and bce(4) can implement mailbox accesses based on the type of brgphy(4)'s mii accesses. Personally, I think it would make brgphy(4) hard to maintain since it would have to access many bce(4) registers in brgphy(4). Given that there are users who are suffering from lack of remote PHY support, it would be better to get working system rather than waiting for complete/perfect implementation. Tested by: Jan Winter ( jan.winter <> kantarmedia dot de ) Reviewed by: davidch (initial version) MFC after: 2 weeks
* The DDB_CTF has little or nothing to do with the debugger so move itbrooks2012-05-092-2/+2
| | | | next KDTRACE_HOOKS.
* Do not reinitialise the interface if it is already running, this prevents thethompsa2012-05-091-0/+3
| | | | | bootp+nfs code from working as it calls init on each dhcp send and rx fails to start in time.
* - Rename sysctl "loose_rx_mtu" to "strict_rx_mtu" to match code usage.davidch2012-05-081-1/+1
| | | | | Submitted by: davidch MFC after: 1 day
* The DEVICE_POLLING dereference of sc->tsec_ifp needs to be checked for nullthompsa2012-05-081-7/+7
| | | | | first or this will panic. Condense three blocks that check sc->tsec_ifp into one while I am here.
* Plug a leak.kib2012-05-081-2/+5
| | | | | Submitted by: Greg Bednarek <gbednarek averesystems com> MFC after: 1 week
* Always define LD_32_PRELOAD so it works for 32 bits binaries onjlh2012-05-081-1/+12
| | | | | | | | | | | | 64 bits platforms. Let rtld(1) decide if it needs to honor it or not. While here, fix a small bug in error reporting when asprintf(3) returns an error. Submitted by: kib Reviewed by: kib (mentor) MFC after: 1 week
* General mdoc(7) and typo fixes.gjb2012-05-0813-17/+20
| | | | | PR: 167713 Submitted by: Nobuyuki Koganemaru (kogane!jp.freebsd.org)
* Add -a and -A option to the usage.ume2012-05-081-2/+3
| | | | MFC after: 1 week
* Use the common api helper routine instead of freeing the nameijwd2012-05-081-2/+1
| | | | | | | buffer directly. Approved by: rmacklem (mentor) MFC after: 1 month
* Re-enable this particular DELAY() for now, at least until theadrian2012-05-071-0/+2
| | | | | | | | | TX and RX PCU stop/drain routines have been thoroughly debugged. It's also very likely that I should add hooks back up to the interface glue (if_ath_pci / if_ath_ahb) to do any relevant bus flushes that are required. A WMAC DDR flush may be required for the AR9130 SoC.
* Revert r234656, and apply a proper fix for binutils PR 10474, whichdim2012-05-072-2/+34
| | | | | | | | | | | | caused linking clang on 32-bit PowerPC to fail with "relocation truncated to fit: R_PPC_REL24" errors. Original diffs (relicensed under GPLv2 with permission from author): http://sourceware.org/git/?p=binutils.git;a=commit;h=1fd262ff7d7ea5adf4894c6b960e092e7e43e3cd http://sourceware.org/git/?p=binutils.git;a=commit;h=053c49fbff58bd33bd0d12200ea61302f92caceb Tested by: andreast MFC after: 1 week
* Display dropped transmit packets in the daily network interface output.jhb2012-05-071-2/+2
| | | | | | PR: conf/165956 Submitted by: Jeremy Chadwick MFC after: 1 week
* zfsboottest.sh: correctly check and suggest value of vfs.root.mountfromavg2012-05-071-2/+2
| | | | | | | ... it was missing "zfs:" prefix. Reported by: theraven MFC after: 10 days
* zfsboottest.sh: gracefully handle default value of bootfs propertyavg2012-05-071-2/+1
| | | | | Reported by: theraven MFC after: 10 days
* Add missing LibUSB 1.0 API function: libusb_get_string_descriptor().hselasky2012-05-074-1/+28
| | | | Reported by: Xiaofan Chen
* Introduce the ${SHLIB_LDSCRIPT} variable to have an ld(1) scriptjlh2012-05-073-4/+33
| | | | | | | | | instead of a symlink for .so files. Reviewed by: kib, kan (previous version), dim Approved by: kib (mentor) Silence from: -hackers@ MFC after: 1 week
* Restore jumbo frame configuration which was broken in r218423.yongari2012-05-071-14/+4
| | | | | | Submitted by: Andrey Zonov <andrey <> zonov dot org > (initial version) Tested by: Andrey Zonov <andrey <> zonov dot org > MFC after: 1 week
* Add basic SMP support for GXemul. Ideally we would have some way to overridejmallett2012-05-073-0/+74
| | | | | | some of the IPI mechanisms used by the common MIPS SMP code so we could use the multicast IPI facilities, on GXemul as well as on several real hardware platforms, and the ability to have multiple hard IPI types.
* Add a trivial driver for the GXemul Ethernet device. Probably quite buggy andjmallett2012-05-074-4/+472
| | | | | | certainly non-optimal, but enough for basic networking use. Requested by: rwatson
* - Bump the manpage date after kfd addition.stas2012-05-071-1/+1
| | | | Reported by: gjb
* - Document kfd(8) rc.conf variables in the manpage.stas2012-05-061-0/+13
|
* - Change kfd rc script to be more conformant with rcNG conventions:stas2012-05-062-9/+7
| | | | | | | | | | o change rcname to kfd; o move mandatory options to command_args; o add missing "shutdown" keyword; o fix require line. Kfd doesn't really need to be started before daemons. Suggested by: dougb
* OpenBSD 5.1 added.pluknet2012-05-061-1/+2
|
* Add definition for the -z nodefaultlib flag.kib2012-05-061-0/+1
| | | | MFC after: 3 days
* Remove some hardcoded constants from code.mav2012-05-061-8/+11
|
* Ooops. Back out changes to main.c from r235094.kientzle2012-05-061-11/+0
| | | | | This change is specific to BeagleBone; I need to figure out how to generalize this before committing.
* Don't call strcmp with a NULL pointer.kientzle2012-05-062-4/+18
| | | | | In particular, on the AM335x, which comes up with no memory mapped to low addresses, dereferencing the NULL causes a crash.
* Address clang warnings.tuexen2012-05-062-7/+8
| | | | MFC after: 3 days
* Add support for the sac_info field in struct sctp_assoc_changetuexen2012-05-062-8/+31
| | | | | | as required by RFC 6458. MFC after: 3 days
* Plug small memory leaks.mav2012-05-062-1/+5
|
* Fix offset calculation to actually rewrite the _last_ block.trasz2012-05-061-2/+2
|
* Fix make dependuqs2012-05-061-2/+2
|
OpenPOWER on IntegriCloud