| /openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-pyruvate/ |
| H A D | 0001-musl-Move-F_OFD_GETLK-F_OFD_SETLK-and-F_OFD_SETLKW-t.patch | 29 @@ -451,9 +451,6 @@ pub const F_GETOWN: ::c_int = 9; 30 pub const F_SETLK: ::c_int = 13; 31 pub const F_SETLKW: ::c_int = 14; 32 pub const F_SETOWN: ::c_int = 8; 33 -pub const F_OFD_GETLK: ::c_int = 36; 34 -pub const F_OFD_SETLK: ::c_int = 37; 35 -pub const F_OFD_SETLKW: ::c_int = 38; 37 pub const VEOF: usize = 4; 38 pub const VEOL: usize = 11; 43 @@ -225,9 +225,6 @@ pub const F_GETOWN_EX: ::c_int = 16; [all …]
|
| H A D | 0001-musl-Define-SOCK_NONBLOCK-with-O_NONBLOCK.patch | 27 @@ -311,8 +311,6 @@ pub const O_SYNC: ::c_int = 1052672; 28 pub const O_RSYNC: ::c_int = 1052672; 29 pub const O_DSYNC: ::c_int = 4096; 31 -pub const SOCK_NONBLOCK: ::c_int = 2048; 33 pub const MAP_ANON: ::c_int = 0x0020; 34 pub const MAP_GROWSDOWN: ::c_int = 0x0100; 35 pub const MAP_DENYWRITE: ::c_int = 0x0800; 38 @@ -295,7 +295,6 @@ pub const SIG_SETMASK: ::c_int = 2; // F 39 pub const SIG_BLOCK: ::c_int = 0x000000; 40 pub const SIG_UNBLOCK: ::c_int = 0x01; [all …]
|
| H A D | 0001-musl-Define-SOCK_SEQPACKET-in-common-place.patch | 24 @@ -324,7 +324,6 @@ pub const MAP_SYNC: ::c_int = 0x080000; 26 pub const SOCK_STREAM: ::c_int = 1; 27 pub const SOCK_DGRAM: ::c_int = 2; 28 -pub const SOCK_SEQPACKET: ::c_int = 5; 30 pub const EDEADLK: ::c_int = 35; 31 pub const ENAMETOOLONG: ::c_int = 36; 34 @@ -292,7 +292,6 @@ pub const SIG_SETMASK: ::c_int = 2; // F 35 pub const SIG_BLOCK: ::c_int = 0x000000; 36 pub const SIG_UNBLOCK: ::c_int = 0x01; 37 pub const SOCK_DGRAM: ::c_int = 2; [all …]
|
| H A D | 0001-musl-riscv32-Define-F_SETLK-F_SETLKW-and-fix-F_GETLK.patch | 19 @@ -339,9 +339,11 @@ pub const POLLWRBAND: ::c_short = 512; 20 pub const O_ASYNC: ::c_int = 8192; 21 pub const O_NDELAY: ::c_int = 2048; 22 pub const EFD_NONBLOCK: ::c_int = 2048; 23 -pub const F_GETLK: ::c_int = 5; 24 -pub const F_GETOWN: ::c_int = 9; 25 pub const F_SETOWN: ::c_int = 8; 26 +pub const F_GETOWN: ::c_int = 9; 27 +pub const F_GETLK: ::c_int = 12; 28 +pub const F_SETLK: ::c_int = 13; [all …]
|
| H A D | 0001-musl-Define-O_LARGEFILE-for-riscv32.patch | 14 @@ -370,6 +370,7 @@ pub const __SIZEOF_PTHREAD_CONDATTR_T: u 15 pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4; 16 pub const O_DIRECT: ::c_int = 16384; 17 pub const O_DIRECTORY: ::c_int = 65536; 18 +pub const O_LARGEFILE: ::c_int = 0o0100000; 19 pub const O_NOFOLLOW: ::c_int = 131072; 20 pub const MAP_HUGETLB: ::c_int = 262144; 21 pub const MAP_LOCKED: ::c_int = 8192;
|
| /openbmc/openbmc/poky/meta/recipes-devtools/python/python3-maturin/ |
| H A D | 0001-Define-more-ioctl-codes-on-riscv32gc-unknown-linux-g.patch | 24 pub struct termios2 { 26 // pub const SO_PREFER_BUSY_POLL: c_int = 69; 27 // pub const SO_BUSY_POLL_BUDGET: c_int = 70; 40 - pub const FICLONE: c_ulong = 0x40049409; 41 - pub const FICLONERANGE: c_ulong = 0x4020940D; 44 +pub const FICLONE: Ioctl = _IOW::<c_int>(0x94, 9) as Ioctl; 45 +pub const FICLONERANGE: Ioctl = _IOW::<crate::file_clone_range>(0x94, 13) as Ioctl; 48 // pub const SCM_TIMESTAMP: c_int = SO_TIMESTAMP; 49 @@ -248,49 +235,18 @@ pub const TUNGETVNETBE: Ioctl = 0x800454 50 pub const TUNSETSTEERINGEBPF: Ioctl = 0x800454e0; [all …]
|
| /openbmc/u-boot/drivers/tpm/ |
| H A D | tpm_tis_sandbox.c | 166 struct tpm_nv_data_public pub; in handle_cap_flag_space() local 169 memset(&pub, '\0', sizeof(pub)); in handle_cap_flag_space() 170 pub.nv_index = __cpu_to_be32(index); in handle_cap_flag_space() 171 pub.pcr_info_read.pcr_selection.size_of_select = __cpu_to_be16( in handle_cap_flag_space() 172 sizeof(pub.pcr_info_read.pcr_selection.pcr_select)); in handle_cap_flag_space() 173 pub.permission.attributes = __cpu_to_be32(1); in handle_cap_flag_space() 174 pub.pcr_info_write = pub.pcr_info_read; in handle_cap_flag_space() 175 memcpy(*datap, &pub, sizeof(pub)); in handle_cap_flag_space() 176 *datap += sizeof(pub); in handle_cap_flag_space()
|
| /openbmc/qemu/crypto/ |
| H A D | akcipher-nettle.c.inc | 34 struct rsa_public_key pub; 47 rsa_public_key_clear(&rsa->pub); 96 nettle_mpz_init_set_str_256_u(rsa->pub.n, rsa_key->n.len, rsa_key->n.data); 97 nettle_mpz_init_set_str_256_u(rsa->pub.e, rsa_key->e.len, rsa_key->e.data); 107 if (!rsa_public_key_prepare(&rsa->pub)) { 126 rsa->priv.size = rsa->pub.size; 145 nettle_mpz_init_set_str_256_u(rsa->pub.n, rsa_key->n.len, rsa_key->n.data); 146 nettle_mpz_init_set_str_256_u(rsa->pub.e, rsa_key->e.len, rsa_key->e.data); 148 if (!rsa_public_key_prepare(&rsa->pub)) { 153 (QCryptoAkCipher *)rsa, rsa->pub.size); [all …]
|
| /openbmc/openbmc/poky/meta/classes-global/ |
| H A D | mirrors.bbclass | 14 ${KERNELORG_MIRROR} http://www.kernel.org/pub \ 16 ${GNUPG_MIRROR} ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt \ 19 ftp://dante.ctan.org/tex-archive http://sunsite.sut.ac.jp/pub/archives/ctan/ \ 22 http://ftp.info-zip.org/pub/infozip/src/ ftp://sunsite.icm.edu.pl/pub/unix/archiving/info-zip/src/ \ 23 …vice.org/sites/lsof.itap.purdue.edu/pub/tools/unix/lsof/ http://www.mirrorservice.org/sites/lsof.i… 29 ftp://sourceware.org/pub http://mirrors.kernel.org/sourceware \ 30 ftp://sourceware.org/pub http://gd.tuwien.ac.at/gnu/sourceware \ 31 ftp://sourceware.org/pub http://ftp.gwdg.de/pub/linux/sources.redhat.com/sourceware \
|
| /openbmc/openbmc/meta-security/meta-parsec/recipes-parsec/parsec-service/files/ |
| H A D | 0002-Fix-unnecessary-qualifications-error.patch | 19 @@ -239,15 +239,16 @@ pub mod peer_credentials { 20 pub mod impl_linux { 29 pub fn peer_cred(socket: &UnixStream) -> io::Result<UCred> { 39 @@ -266,7 +267,7 @@ pub mod peer_credentials {
|
| /openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/ |
| H A D | python3-schedutils_0.6.bb | 2 HOMEPAGE = "https://git.kernel.org/pub/scm/libs/python/python-schedutils/python-schedutils.git/" 7 SRC_URI = "git://git.kernel.org/pub/scm/libs/python/python-schedutils/python-schedutils.git;branch=…
|
| H A D | python3-linux-procfs_0.7.3.bb | 2 HOMEPAGE = "https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git/" 7 SRC_URI = "git://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git;bra…
|
| /openbmc/openbmc/meta-google/recipes-google/ssh/ |
| H A D | gbmc-dev-ssh-key.bb | 6 SRC_URI += "file://gbmc-dev.pub" 15 install -m 0755 ${S}/gbmc-dev.pub ${D}${datadir}/authorized_keys.d/root/50-gbmc-dev
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-filter/nfacct/ |
| H A D | nfacct_1.0.2.bb | 6 UPSTREAM_CHECK_URI = "https://www.netfilter.org/pub/nfacct" 7 SRC_URI = "https://www.netfilter.org/pub/${BPN}/${BP}.tar.bz2"
|
| /openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/clang-layer/recipes-support/thin-provisioning-tools/thin-provisioning-tools/ |
| H A D | 0001-Define-more-ioctl-codes-on-riscv32gc-unknown-linux-g.patch | 36 pub const FS_IOC_GETFLAGS: ::Ioctl = 0x80046601; 37 pub const FS_IOC_SETFLAGS: ::Ioctl = 0x40046602; 38 pub const FS_IOC_GETVERSION: ::Ioctl = 0x80047601;
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/cbindgen/cbindgen/ |
| H A D | 0001-Define-more-ioctl-codes-on-riscv32gc-unknown-linux-g.patch | 36 pub const FS_IOC_GETFLAGS: ::Ioctl = 0x80046601; 37 pub const FS_IOC_SETFLAGS: ::Ioctl = 0x40046602; 38 pub const FS_IOC_GETVERSION: ::Ioctl = 0x80047601;
|
| /openbmc/openbmc/poky/meta/recipes-devtools/rust/cargo-c/ |
| H A D | 0001-Define-more-ioctl-codes-on-riscv32gc-unknown-linux-g.patch | 36 pub const FS_IOC_GETFLAGS: ::Ioctl = 0x80046601; 37 pub const FS_IOC_SETFLAGS: ::Ioctl = 0x40046602; 38 pub const FS_IOC_GETVERSION: ::Ioctl = 0x80047601;
|
| /openbmc/openbmc/poky/meta/recipes-kernel/wireless-regdb/ |
| H A D | wireless-regdb_2025.02.20.bb | 7 SRC_URI = "https://www.kernel.org/pub/software/network/${BPN}/${BP}.tar.xz" 16 install -m 0644 wens.key.pub.pem ${D}${sysconfdir}/wireless-regdb/pubkeys/wens.key.pub.pem
|
| /openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-utils/f2fs-tools/ |
| H A D | f2fs-tools_1.16.0.bb | 2 HOMEPAGE = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git" 11 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git;branch=master \
|
| /openbmc/openbmc/poky/meta/recipes-devtools/mmc/ |
| H A D | mmc-utils_git.bb | 2 HOMEPAGE = "https://git.kernel.org/pub/scm/utils/mmc/mmc-utils.git/" 12 SRC_URI = "git://git.kernel.org/pub/scm/utils/mmc/mmc-utils.git;branch=${SRCBRANCH};protocol=https"
|
| /openbmc/openbmc/poky/meta/recipes-kernel/libtraceevent/ |
| H A D | libtraceevent_1.8.4.bb | 5 HOMEPAGE = "https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/" 12 SRC_URI = "git://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git;branch=${BPN};protocol=http…
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/sethdlc/ |
| H A D | sethdlc_1.18.bb | 2 HOMEPAGE = "https://www.kernel.org/pub/linux/utils/net/hdlc" 8 SRC_URI = "https://www.kernel.org/pub/linux/utils/net/hdlc/${BP}.tar.gz \
|
| /openbmc/openbmc/poky/meta/recipes-devtools/erofs-utils/ |
| H A D | erofs-utils_1.8.5.bb | 6 HOMEPAGE = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/tree/README" 9 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git;branch=master;protoc…
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/libtracefs/ |
| H A D | libtracefs_1.8.1.bb | 5 HOMEPAGE = "https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/" 13 SRC_URI = "git://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git;branch=${BPN};protocol=https \
|
| /openbmc/openbmc/meta-phosphor/classes/ |
| H A D | phosphor-deploy-ssh-keys.bbclass | 11 # SSH_KEYS = "vejmarie:/home/openbmc/openbmc/meta-hpe/keys/test.pub" 13 # SSH_KEYS = "vejmarie:/home/openbmc/openbmc/meta-hpe/keys/test.pub;root:/path/to/id_rsa.pub"
|