Home
last modified time | relevance | path

Searched +full:- +full:- +full:no +full:- +full:install +full:- +full:recommends (Results 1 – 22 of 22) sorted by relevance

/freebsd/contrib/libder/.github/workflows/
H A Dbuild.yml14 runs-on: ${{ matrix.os }}
17 os: [ubuntu-20.04, ubuntu-22.04, macos-latest]
19 - os: ubuntu-20.04
20 - os: ubuntu-22.04
21 - os: macos-latest
23 - name: checkout
25 - name: install system packages (Ubuntu)
28 sudo apt-get update --quiet || true
29 sudo apt-get -yq --no-install-suggests --no-install-recommends install cmake
30 - name: install system packages (macOS)
[all …]
/freebsd/contrib/unbound/contrib/android/
H A Dinstall_tools.sh3 # This step should install tools needed for all packages - OpenSSL, Expat and Unbound
5 sudo apt-get -qq update
6 sudo apt-get -qq install --no-install-recommends curl tar zip unzip perl openjdk-8-jdk autoconf aut…
/freebsd/sys/contrib/libsodium/packaging/dotnet-core/recipes/
H A Ddebian-x641 apt-get update
2 apt-get install -y --no-install-recommends build-essential
H A Dlinux-x641 apt-get update
2 apt-get install -y --no-install-recommends build-essential
H A Dubuntu-x641 apt-get update
2 apt-get install -y --no-install-recommends build-essential
H A Dopensuse-x641 zypper install -y --no-recommends -n binutils gcc make tar
/freebsd/.github/workflows/
H A Dstyle.yml17 runs-on: ubuntu-latest
21 - name: Get depth
24 - name: checkout
27 fetch-depth: ${{ env.DEPTH }}
29 - name: Install packages
31 sudo apt-get update --quiet || true
32 sudo apt-get -yq --no-install-suggests --no-install-recommends install perl
33 - name: Run checker
35 sha=$(git rev-parse HEAD~${{ github.event.pull_request.commits }})
36 tools/build/checkstyle9.pl --github ${sha}..${{ github.event.pull_request.head.sha }}
H A Dcross-bootstrap-tools.yml1 name: Cross-build Kernel
16 runs-on: ${{ matrix.os }}
18 fail-fast: false
21 os: [ ubuntu-22.04, ubuntu-24.04, macos-latest ]
24 - os: ubuntu-22.04
25 compiler: clang-14
26 cross-bindir: /usr/lib/llvm-14/bin
27 pkgs: bmake libarchive-dev clang-14 lld-14
28 - os: ubuntu-24.04
29 compiler: clang-18
[all …]
/freebsd/sys/contrib/zstd/
H A DMakefile2 # Copyright (c) 2015-2021, Yann Collet, Facebook, Inc.
5 # This source code is licensed under both the BSD-style license (found in the
8 # You may select, at your option, one of the above-listed licenses.
24 # When cross-compiling from linux to windows, you might
28 # Note: mingw-w64 build from linux to windows does not
40 ## default: Build lib-release and zstd-release
42 default: lib-release zstd-release
53 $(Q)$(MAKE) -C $(PRGDIR) all
54 $(Q)$(MAKE) -C $(TESTDIR) all
58 $(MAKE) -C $(PRGDIR) zstd32
[all …]
/freebsd/sys/contrib/openzfs/contrib/debian/
H A Drules.in1 #!/usr/bin/make -f
5 LSB_DISTRIBUTOR := $(shell lsb_release -is)
7 LINUX_MIN := $(shell awk '/Linux-Minimum:/{print $$2}' META)
8 LINUX_NEXT := $(shell awk -F'[ .]' '/Linux-Maximum:/{print $$2 "." $$3+1}' META)
10 DKMSFILES := module include config zfs.release.in autogen.sh copy-builtin META AUTHORS \
14 KVERS=$(shell uname -r)
17 non_epoch_version=$(shell echo $(KVERS) | perl -pe 's/^\d+://')
18 PACKAGE=openzfs-zfs
19 pmodules = $(PACKAGE)-modules-$(non_epoch_version)
25 NJOBS = -j$(or $(PARALLEL),$(NUM_CPUS),1)
[all …]
/freebsd/sys/dev/hyperv/vmbus/x86/
H A Dhyperv_x86.c1 /*- SPDX-License-Identifier: BSD-2-Clause
2 * Copyright (c) 2009-2012,2016-2017, 2022 Microsoft Corp.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * Implements low-level interactions with Hyper-V/Azure
75 .tc_name = "Hyper-V",
99 * Register Hyper-V timecounter. This should be done as early in hyperv_init_tc()
106 * Install 64 bits timecounter method for other modules in hyperv_init_tc()
134 /* Can't perform any Hyper-V specific actions */ in hypercall_page_setup()
136 return (-1); in hypercall_page_setup()
171 * Hyper-V w/o Hypercall is impossible; someone in hyperv_identify_features()
[all …]
/freebsd/
H A DUPDATING1 Updating Information for users of FreeBSD-CURRENT.
9 https://docs.freebsd.org/en/books/handbook/cutting-edge/#makeworld
22 includes various WITNESS- related kernel options, INVARIANTS, malloc
28 at runtime, run "ln -s 'abort:false,junk:false' /etc/malloc.conf".)
33 however it does not have any in-tree consumers since the introduction
48 UMASS quirks and auto-quirk probing has been overhauled. CAM now won't
51 in 14 and broke several e-readers and the like). Please send imp@freebsd.org
60 memory where expected. These changes may require out-of-tree drivers
67 install the appropriate firmware for their chipset using fwget(8) or
90 different transport - netlink(4) socket instead of unix(4). Users of
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1 //===-- Platform.cpp ------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
82 m_collection_sp->Initialize(g_platform_properties); in PlatformProperties()
114 return m_collection_sp->SetPropertyAtIndex(ePropertyModuleCacheDirectory, in SetModuleCacheDirectory()
120 auto f_spec_opt = m_collection_sp->GetPropertyAtIndexAsOptionValueFileSpec( in SetDefaultModuleCacheDirectory()
123 f_spec_opt->SetDefaultValue(dir_spec); in SetDefaultModuleCacheDirectory()
126 /// Get the native host platform plug-in.
196 module_sp->SetPlatformFileSpec(resolved_spec.GetFileSpec()); in GetSharedModule()
229 return platform->GetAugmentedArchSpec(triple); in GetAugmentedArchSpec()
[all …]
/freebsd/contrib/ntp/sntp/libevent/
H A DChangeLog1 Changes in version 2.1.12-stable (05 Jul 2020)
8 it recommends itself better then travis/appveyor (and had been removed from
18 o Merge branch 'event_rpcgen.py-cleanup' (f0ded5f3, 48e04887 Enji Cooper)
23 o Merge branch 'osx-clock' (e85afbe3 Azat Khuzhin)
24 …o test-ratelim: calculate timers bias (for slow CPUs) to avoid false-positive (8ad26d0b Azat Khuzh…
28 o http: fix undefined-shift in EVUTIL_IS*_ helpers (6b8d02a7 Azat Khuzhin)
32 …po in GetAdaptersAddresses windows library. It should be iphlpapi.dll (891adda9 Aleksandr-Melnikov)
33 o Merge branch 'EV_CLOSED-and-EV_ET-fixes' (db2efdf5 Azat Khuzhin)
41 o Merge branch 'fix-signal-leak' (poll/select now needs reinit) (1c9cc07b Azat Khuzhin)
56 o https-client: load certificates from the system cert store on Windows (e9478640 yuangongji)
[all …]
/freebsd/contrib/libevent/
H A DChangeLog1 Changes in version 2.1.12-stable (05 Jul 2020)
8 it recommends itself better then travis/appveyor (and had been removed from
18 o Merge branch 'event_rpcgen.py-cleanup' (f0ded5f3, 48e04887 Enji Cooper)
23 o Merge branch 'osx-clock' (e85afbe3 Azat Khuzhin)
24 …o test-ratelim: calculate timers bias (for slow CPUs) to avoid false-positive (8ad26d0b Azat Khuzh…
28 o http: fix undefined-shift in EVUTIL_IS*_ helpers (6b8d02a7 Azat Khuzhin)
32 …po in GetAdaptersAddresses windows library. It should be iphlpapi.dll (891adda9 Aleksandr-Melnikov)
33 o Merge branch 'EV_CLOSED-and-EV_ET-fixes' (db2efdf5 Azat Khuzhin)
41 o Merge branch 'fix-signal-leak' (poll/select now needs reinit) (1c9cc07b Azat Khuzhin)
56 o https-client: load certificates from the system cert store on Windows (e9478640 yuangongji)
[all …]
/freebsd/contrib/xz/
H A DChangeLog3 Date: 2025-04-03 14:34:43 +0300
7 src/liblzma/Makefile.am | 2 +-
8 src/liblzma/api/lzma/version.h | 2 +-
9 2 files changed, 2 insertions(+), 2 deletions(-)
13 Date: 2025-04-03 14:34:43 +0300
22 Date: 2025-04-03 14:34:43 +0300
32 for OSS-Fuzz.").
34 tests/ossfuzz/fuzz_common.h | 31 ++++++++++++++++++++++++-------
35 1 file changed, 24 insertions(+), 7 deletions(-)
39 Date: 2025-04-03 14:34:43 +0300
[all …]
/freebsd/contrib/unbound/doc/
H A DChangelog2 - Merge #1265: Fix WSAPoll.
5 - Fix for print of connection type in log-replies for dot and doh.
8 - Fix to detect if atomic_store links in configure.
9 - Fix #1264: unbound 1.22.0 leaks memory when doing DoH.
12 - Tag for 1.23.0rc1.
13 - Fix fast_reload to print chroot with config file name.
16 - Merge #902: DNS Error Reporting (RFC 9567). Introduces new
17 configuration option 'dns-error-reportin
[all...]
/freebsd/contrib/sendmail/doc/op/
H A Dop.me1 .\" Copyright (c) 1998-2013 Proofpoint, Inc. and its suppliers.
12 .\" $Id: op.me,v 8.759 2014-01-13 14:40:05 ca Exp $
14 .\" eqn op.me | pic | troff -me
51 .eh 'SMM:08-%''Sendmail Installation and Operation Guide'
52 .oh 'Sendmail Installation and Operation Guide''SMM:08-%'
74 .b SENDMAIL\u\s-6TM\s0\d
103 .i Sendmail \u\s-2TM\s0\d
107 It is not tied to any one transport protocol \*-
153 RFC 7505 (A "Null MX" No Service Resource Record for Domains That Accept No Mail).
173 explains the day-to-day information you should know
[all …]
/freebsd/crypto/openssl/
H A DConfigure2 # -*- mode: perl; -*-
3 # Copyright 2016-2024 The OpenSSL Project Authors. All Rights Reserved.
10 ## Configure -- OpenSSL source tree configuration script
25 # see INSTALL.md for instructions.
30no-<cipher> ...] [enable-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] […
42 *** perl configdata.pm --dump ***
45 *** 'Troubleshooting' section in the INSTALL.md file first) ***
52 # --config add the given configuration file, which will be read after
55 # --prefix prefix for the OpenSSL installation, which includes the
59 # --openssldir OpenSSL data area, such as openssl.cnf, certificates and keys.
[all …]
/freebsd/sys/dev/usb/wlan/
H A Dif_mtw.c1 /*-
2 * Copyright (c) 2008-2010 Damien Bergamini <damien.bergamini@free.fr>
3 * Copyright (c) 2013-2014 Kevin Lo
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
111 device_printf((_sc)->sc_dev, __VA_ARGS__); \
387 if (uaa->dev_state != UAA_DEV_READY) in mtw_autoinst()
393 id = iface->idesc; in mtw_autoinst()
394 if (id == NULL || id->bInterfaceClass != UICLASS_MASS) in mtw_autoinst()
400 uaa->dev_state = UAA_DEV_EJECTING; in mtw_autoinst()
441 if (sc->asic_ver == 0x7612) in mtw_wlan_enable()
[all …]
H A Dif_run.c1 /*-
5 * Copyright (c) 2013-2014 Kevin Lo
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
20 /*-
114 device_printf((_sc)->sc_dev, __VA_ARGS__); \
531 /* MCS - single stream */
541 /* MCS - 2 streams */
551 /* MCS - 3 streams */
732 if (uaa->dev_state != UAA_DEV_READY) in run_autoinst()
738 id = iface->idesc; in run_autoinst()
[all …]
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_torus.c3 * DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
5 * Copyright (c) 2009-2011 ZIH, TU Dresden, Federal Republic of Germany. All rights reserved.
6 * Copyright (c) 2010-2012 Mellanox Technologies LTD. All rights reserved.
18 * - Redistributions of source code must retain the above
22 * - Redistributions in binary form must reproduce the above
30 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
70 * UNKNOWN - Uninitialized endpoint.
71 * SRCSINK - generates or consumes traffic, and thus has an associated LID;
73 * PASSTHRU - Has no associated LID; i.e. a switch port.
75 * If it is possible to communicate in-band with a switch, it will require
[all …]