On 2020-Apr-06 05:48:58 +, Wojciech Macek wrote:
>Log:
> Add MDIO PHY driver for NS2 ARM64 platform.
...
>Modified: head/sys/conf/files.arm64
>==
>--- head/sys/conf/files.arm64 Mon Apr 6 04:06:15 2020(r35964
> Author: sobomax
> Date: Tue Apr 7 02:46:22 2020
> New Revision: 359685
> URL: https://svnweb.freebsd.org/changeset/base/359685
>
> Log:
> Normalize deployment tools usage and definitions by putting into one place
> instead of sprinkling them out over many disjoint files. This is a follow-up
Author: luporl
Date: Tue Apr 7 12:46:26 2020
New Revision: 359687
URL: https://svnweb.freebsd.org/changeset/base/359687
Log:
[PPC] Fix loader call to instantiate-rtas
OpenFirmware (OF) method instantiate-rtas was being called with a wrong
rtas-base-address argument. It must use the memor
Author: kevans
Date: Tue Apr 7 12:57:50 2020
New Revision: 359688
URL: https://svnweb.freebsd.org/changeset/base/359688
Log:
stand: -fno-common fixes for !x86 loaders
- beriloader: archsw is declared extern and defined elsewhere
- ofwloader: ofw_elf{,64} are defined in elf_freebsd.c and
Author: kevans
Date: Tue Apr 7 14:14:59 2020
New Revision: 359689
URL: https://svnweb.freebsd.org/changeset/base/359689
Log:
config(8): "fix" a couple of buffer overflows
Recently added/changed lines in various kernel configs have caused some
buffer overflows that went undetected. These
Author: kevans
Date: Tue Apr 7 15:10:04 2020
New Revision: 359690
URL: https://svnweb.freebsd.org/changeset/base/359690
Log:
Fix port/kernel builds after r359681
Submitted by: bdrewery
Reported by: bdrewery, sobomax, antoine
Modified:
head/share/mk/bsd.sys.mk
Modified: head/share/mk
Author: brooks
Date: Tue Apr 7 15:32:08 2020
New Revision: 359691
URL: https://svnweb.freebsd.org/changeset/base/359691
Log:
Allow the kernel to build with a compiler that sets -fno-common.
The mechanism that generates assym.inc and offset.inc depends on the
symbols in question being com
On Tue, Apr 07, 2020 at 03:10:04PM +, Kyle Evans wrote:
> Author: kevans
> Date: Tue Apr 7 15:10:04 2020
> New Revision: 359690
> URL: https://svnweb.freebsd.org/changeset/base/359690
>
> Log:
> Fix port/kernel builds after r359681
>
> Submitted by: bdrewery
> Reported by:
Author: cem
Date: Tue Apr 7 16:40:41 2020
New Revision: 359696
URL: https://svnweb.freebsd.org/changeset/base/359696
Log:
libcasper(3): Export functions to C++
We must wrap C declarations in __BEGIN / __END_DECLS to avoid C++
name-mangling
of the declaration when including the C header;
Author: sjg
Date: Tue Apr 7 16:56:34 2020
New Revision: 359700
URL: https://svnweb.freebsd.org/changeset/base/359700
Log:
Improve interaction of vectx and tftp
On slow platforms, it helps to spread the hashing load
over time so that tftp does not timeout.
Also, some .4th files are t
Author: kevans
Date: Tue Apr 7 17:04:24 2020
New Revision: 359702
URL: https://svnweb.freebsd.org/changeset/base/359702
Log:
Add -fno-common to all userland/kernel src builds
-fno-common will become the default in GCC10/LLVM11. Plenty of work has been
put in to make sure our world builds
Author: afedorov
Date: Tue Apr 7 17:06:33 2020
New Revision: 359704
URL: https://svnweb.freebsd.org/changeset/base/359704
Log:
Add VIRTIO_NET_F_MTU flag support for the bhyve virtio-net device.
The flag can be enabled using the new 'mtu' option:
bhyve -s X:Y:Z,virtio-net,[tapN|valeX:N],mtu=
Author: bdrewery
Date: Tue Apr 7 17:07:04 2020
New Revision: 359705
URL: https://svnweb.freebsd.org/changeset/base/359705
Log:
NO_OBJ: Always fix .OBJDIR regardless of AUTO_OBJ.
Sponsored by: Dell EMC
MFC after:2 weeks
Modified:
head/share/mk/bsd.init.mk
head/share/mk/bsd.obj.mk
On Tue, Apr 7, 2020 at 12:07 PM Bryan Drewery wrote:
>
> Author: bdrewery
> Date: Tue Apr 7 17:07:04 2020
> New Revision: 359705
> URL: https://svnweb.freebsd.org/changeset/base/359705
>
> Log:
> NO_OBJ: Always fix .OBJDIR regardless of AUTO_OBJ.
>
> Sponsored by: Dell EMC
> MFC after:2
On 4/7/2020 10:13 AM, Kyle Evans wrote:
> On Tue, Apr 7, 2020 at 12:07 PM Bryan Drewery wrote:
>>
>> Author: bdrewery
>> Date: Tue Apr 7 17:07:04 2020
>> New Revision: 359705
>> URL: https://svnweb.freebsd.org/changeset/base/359705
>>
>> Log:
>> NO_OBJ: Always fix .OBJDIR regardless of AUTO_OBJ
Author: luporl
Date: Tue Apr 7 19:46:00 2020
New Revision: 359716
URL: https://svnweb.freebsd.org/changeset/base/359716
Log:
Add support to MSDOS FS in PPC loader
Although PPC OFW loader already had a LOADER_MSDOS_SUPPORT option, a few lines
were missing in conf.c, in order to support FA
Author: dab
Date: Tue Apr 7 20:26:42 2020
New Revision: 359717
URL: https://svnweb.freebsd.org/changeset/base/359717
Log:
Add a basic test for nvmecontrol
I recently made some bug fixes in nvmecontrol. It occurred to me that
since nvmecontrol lacks any kyua tests, I should convert the in
Kyle Evans wrote:
> universe13a% make -C stand -V .OBJDIR
> /scratch/tmp/kevans/obj/home/kevans/head/amd64.amd64/stand
>
> But in a buildenv:
> universe13a% make TARGET_ARCH=armv7 buildenv
> Entering world for armv7:arm
> For ZSH you must run: export CPUTYPE=
> universe13a% make -C stand -V .OBJD
On Tue, Apr 7, 2020 at 4:49 PM Simon J. Gerraty wrote:
>
> Kyle Evans wrote:
> > universe13a% make -C stand -V .OBJDIR
> > /scratch/tmp/kevans/obj/home/kevans/head/amd64.amd64/stand
> >
> > But in a buildenv:
> > universe13a% make TARGET_ARCH=armv7 buildenv
> > Entering world for armv7:arm
> > Fo
Author: imp
Date: Tue Apr 7 22:23:22 2020
New Revision: 359718
URL: https://svnweb.freebsd.org/changeset/base/359718
Log:
Now that we don't have special-case geom hacking defined in md_var.h, stop
including it. sparc64 was the last straggler here, but these weren't removed
at
the time.
Mo
Author: rgrimes
Date: Tue Apr 7 23:17:44 2020
New Revision: 359719
URL: https://svnweb.freebsd.org/changeset/base/359719
Log:
In the past changes have been made to smbios->minor without updating the
smbios->bcdrev value.
Correct that by calculating bcdrev from the major/minor values.
R
Author: rmacklem
Date: Wed Apr 8 01:12:54 2020
New Revision: 359720
URL: https://svnweb.freebsd.org/changeset/base/359720
Log:
Fix an interoperability issue w.r.t. the Linux client and the NFSv4 server.
Luoqi Chen reported a problem on freebsd-fs@ where a Linux NFSv4 client
was able to o
22 matches
Mail list logo