-
Notifications
You must be signed in to change notification settings - Fork 584
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
unix: regenerate all definitions on FreeBSD 12.1 on {386,amd64,arm64}
I just created a couple of virtual machines/QEMU instances containing stock copies of FreeBSD 12.1-RELEASE. On these systems I ran mkall.sh, thereby bringing the definitions in sync with that version of FreeBSD. I also attempted to bring the GOOS=freebsd GOARCH=arm port up to date, but was unfortunately not able to do so. There doesn't seem to be any documentation on how to bring this port of FreeBSD up on an emulator. The only option seems to be to use physical hardware. Change-Id: I54c9f5d15587996ad5fbb535480ab0aa0e723260 GitHub-Last-Rev: ad79b1b GitHub-Pull-Request: #63 Reviewed-on: https://go-review.googlesource.com/c/sys/+/223698 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
1 parent
a7d97aa
commit 5766fd3
Showing
13 changed files
with
536 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright 2020 The Go Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
// Constants that were deprecated or moved to enums in the FreeBSD headers. Keep | ||
// them here for backwards compatibility. | ||
|
||
package unix | ||
|
||
const ( | ||
DLT_HHDLC = 0x79 | ||
IPV6_MIN_MEMBERSHIPS = 0x1f | ||
IP_MAX_SOURCE_FILTER = 0x400 | ||
IP_MIN_MEMBERSHIPS = 0x1f | ||
RT_CACHING_CONTEXT = 0x1 | ||
RT_NORTREF = 0x2 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.