| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/etcd/etcd/ |
| H A D | 0001-xxhash-bump-to-v2.1.2.patch | 23 client/v3/go.mod | 2 +- 24 client/v3/go.sum | 2 ++ 25 etcdctl/go.mod | 2 +- 26 etcdctl/go.sum | 3 ++- 27 etcdutl/go.mod | 2 +- 28 etcdutl/go.sum | 3 ++- 29 go.mod | 2 +- 30 go.sum | 3 ++- 31 server/go.mod | 2 +- 32 server/go.sum | 3 ++- [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/go/ |
| H A D | go-runtime.inc | 1 DEPENDS = "virtual/${TUNE_PKGARCH}-go go-native" 2 DEPENDS:class-nativesdk = "virtual/${TARGET_PREFIX}go" 3 PROVIDES = "virtual/${TARGET_PREFIX}go-runtime" 44 install -d ${D}${libdir}/go/src 45 cp --preserve=mode,timestamps -R ${B}/pkg ${D}${libdir}/go/ 47 rm -rf ${D}${libdir}/go/pkg/${BUILD_GOTUPLE} 48 rm -rf ${D}${libdir}/go/pkg/obj/${BUILD_GOTUPLE} 50 rm -rf ${D}${libdir}/go/pkg/tool 51 rm -rf ${D}${libdir}/go/pkg/obj 52 rm -rf ${D}${libdir}/go/pkg/bootstrap [all …]
|
| H A D | go-target.inc | 1 DEPENDS = "virtual/${TUNE_PKGARCH}-go go-native" 2 DEPENDS:class-nativesdk = "virtual/${TARGET_PREFIX}go go-native" 33 install -d ${D}${libdir}/go/pkg/tool 34 cp --preserve=mode,timestamps -R ${B}/pkg/tool/${TARGET_GOTUPLE} ${D}${libdir}/go/pkg/tool/ 35 install -d ${D}${libdir}/go/src 36 cp --preserve=mode,timestamps -R ${S}/src/cmd ${D}${libdir}/go/src/ 37 find ${D}${libdir}/go/src -depth -type d -name testdata -exec rm -rf {} \; 38 install -d ${D}${libdir}/go/bin 42 install -m 0755 $f ${D}${libdir}/go/bin/ 43 ln -sf ../${baselib}/go/bin/$name ${D}${bindir}/ [all …]
|
| H A D | go-binary-native_1.24.3.bb | 1 # This recipe is for bootstrapping our go-cross from a prebuilt binary of Go from golang.org. 8 PROVIDES = "go-native" 10 # Checksums available at https://go.dev/dl/ 11 SRC_URI = "https://dl.google.com/go/go${PV}.${BUILD_GOOS}-${BUILD_GOARCH}.tar.gz;name=go_${BUILD_GO… 17 UPSTREAM_CHECK_REGEX = "go(?P<pver>\d+(\.\d+)+)\.linux" 19 CVE_PRODUCT = "golang:go" 21 S = "${WORKDIR}/go" 34 export GOROOT="${GOROOT:-\`readlink -f \$here/../lib/go\`}" 35 \$here/../lib/go/bin/$1 "\$@" 43 install -d ${D}${bindir} ${D}${libdir}/go
|
| H A D | go-1.24.3.inc | 1 require go-common.inc 3 FILESEXTRAPATHS:prepend := "${FILE_DIRNAME}/go:" 8 file://0001-cmd-go-make-content-based-hash-generation-less-pedan.patch \ 9 file://0002-cmd-go-Allow-GOTOOLDIR-to-be-overridden-in-the-envir.patch \ 13 file://0006-cmd-go-make-GOROOT-precious-by-default.patch \ 14 file://0007-exec.go-filter-out-build-specific-paths-from-linker-.patch \ 15 file://0008-src-cmd-dist-buildgo.go-do-not-hardcode-host-compile.patch \ 16 file://0009-go-Filter-build-paths-on-staticly-linked-arches.patch \ 17 file://0010-cmd-go-clear-GOROOT-for-func-ldShared-when-trimpath-.patch \
|
| H A D | go-cross.inc | 3 PROVIDES = "virtual/${TUNE_PKGARCH}-go" 4 DEPENDS = "go-native" 6 PN = "go-cross-${TUNE_PKGARCH}" 32 \$here/../../lib/${CROSS_TARGET_SYS_DIR}/go/bin/$1 "\$@" 38 install -d ${D}${libdir}/go 39 cp --preserve=mode,timestamps -R ${B}/pkg ${D}${libdir}/go/ 40 install -d ${D}${libdir}/go/src 42 [ ! -d $d ] || cp --preserve=mode,timestamps -R ${S}/src/$d ${D}${libdir}/go/src/; \ 44 find ${D}${libdir}/go/src -depth -type d -name testdata -exec rm -rf {} \; 45 install -d ${D}${bindir} ${D}${libdir}/go/bin [all …]
|
| H A D | go-cross-canadian.inc | 3 DEPENDS = "go-native virtual/${HOST_PREFIX}go virtual/nativesdk-${HOST_PREFIX}go-runtime \ 6 PN = "go-cross-canadian-${TRANSLATED_TARGET_ARCH}" 8 # it uses gcc on build machine during go-cross-canadian bootstrap, but 16 export GOTOOLDIR_BOOTSTRAP = "${STAGING_LIBDIR_NATIVE}/${HOST_SYS}/go/pkg/tool/${BUILD_GOTUPLE}" 38 native_goroot=\`readlink -f \$here/../../lib/${TARGET_SYS}/go\` 45 test -n "\$GOROOT" || export GOROOT="\$OECORE_TARGET_SYSROOT/${target_libdir}/go" 46 \$here/../../lib/${TARGET_SYS}/go/bin/$1 "\$@" 52 install -d ${D}${libdir}/go/pkg/tool 53 cp --preserve=mode,timestamps -R ${B}/pkg/tool/${HOST_GOTUPLE} ${D}${libdir}/go/pkg/tool/ 54 install -d ${D}${bindir} ${D}${libdir}/go/bin [all …]
|
| H A D | go-crosssdk.inc | 3 DEPENDS = "go-native virtual/nativesdk-cross-cc virtual/nativesdk-compilerlibs virtual/nativesdk-cr… 4 PN = "go-crosssdk-${SDK_SYS}" 5 PROVIDES = "virtual/${TARGET_PREFIX}go" 27 \$here/../../lib/${CROSS_TARGET_SYS_DIR}/go/bin/$1 "\$@" 33 install -d ${D}${libdir}/go 34 install -d ${D}${libdir}/go/bin 35 install -d ${D}${libdir}/go/pkg/tool 37 cp --preserve=mode,timestamps -R ${S}/pkg/tool/${BUILD_GOTUPLE} ${D}${libdir}/go/pkg/tool/ 41 install -m755 $f ${D}${libdir}/go/bin
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/minio/ |
| H A D | minio_git.bb | 26 inherit go 29 # | ./github.com/minio/mc/main.go:27:(.text+0xd258b8): relocation R_MIPS_HI16 against `a local symb… 32 # Needs fixing with go >= 1.20.4" 45 github.com/dustin/go-humanize:github.com/dustin/go-humanize \ 47 github.com/go-ole/go-ole:github.com/go-ole/go-ole \ 48 github.com/goccy/go-json:github.com/goccy/go-json \ 52 github.com/json-iterator/go:github.com/json-iterator/go \ 54 github.com/mattn/go-ieproxy:github.com/mattn/go-ieproxy \ 55 github.com/mattn/go-isatty:github.com/mattn/go-isatty \ 59 github.com/minio/madmin-go:github.com/minio/madmin-go \ [all …]
|
| H A D | src_uri.inc | 11 # github.com/dustin/go-humanize v1.0.0 12 # [1] git ls-remote https://github.com/dustin/go-humanize e673fa1ffc91213297a60d18a6f513aa74bced52 14 …b.com/dustin/go-humanize;name=go-humanize;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/sr… 21 # github.com/go-ole/go-ole v1.2.6 22 # [1] git ls-remote https://github.com/go-ole/go-ole 8b1f7f90f6b1728609c9694f2cff140d34fd91f8 24 …://github.com/go-ole/go-ole;name=go-ole;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/… 26 # github.com/goccy/go-json v0.8.1 27 # [1] git ls-remote https://github.com/goccy/go-json de89bd3db67f2219c6183ec6febe2b5f7a6b06fb 29 …github.com/goccy/go-json;name=go-json;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/im… 46 # github.com/json-iterator/go v1.1.12 [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/go/go/ |
| H A D | 0006-cmd-go-make-GOROOT-precious-by-default.patch | 4 Subject: [PATCH 06/11] cmd/go: make GOROOT precious by default 6 The go build tool normally rebuilds whatever it detects is 8 be read-only and the go runtime has been built as a shared 18 the meta/recipes-devtools/go tree by 26 src/cmd/go/internal/work/action.go | 3 +++ 27 src/cmd/go/internal/work/build.go | 6 ++++++ 28 src/cmd/go/internal/work/exec.go | 25 +++++++++++++++++++++++++ 31 diff --git a/src/cmd/go/internal/work/action.go b/src/cmd/go/internal/work/action.go 33 --- a/src/cmd/go/internal/work/action.go 34 +++ b/src/cmd/go/internal/work/action.go [all …]
|
| H A D | 0002-cmd-go-Allow-GOTOOLDIR-to-be-overridden-in-the-envir.patch | 4 Subject: [PATCH 02/11] cmd/go: Allow GOTOOLDIR to be overridden in the 10 the meta/recipes-devtools/go tree by 18 src/cmd/dist/build.go | 4 +++- 19 src/cmd/go/internal/cfg/cfg.go | 6 +++++- 22 diff --git a/src/cmd/dist/build.go b/src/cmd/dist/build.go 24 --- a/src/cmd/dist/build.go 25 +++ b/src/cmd/dist/build.go 36 isRelease = strings.HasPrefix(goversion, "release.") || strings.HasPrefix(goversion, "go") 37 diff --git a/src/cmd/go/internal/cfg/cfg.go b/src/cmd/go/internal/cfg/cfg.go 39 --- a/src/cmd/go/internal/cfg/cfg.go [all …]
|
| H A D | 0010-cmd-go-clear-GOROOT-for-func-ldShared-when-trimpath-.patch | 4 Subject: [PATCH 10/11] cmd/go: clear GOROOT for func ldShared when -trimpath 19 [1] https://github.com/golang/go/commit/507d1b22f4b58ac68841582d0c2c0ab6b20e5a98 20 [2] https://github.com/golang/go/commit/507d1b22f4b58ac68841582d0c2c0ab6b20e5a98#diff-cab5921f94f26… 22 Upstream-Status: Submitted [https://go-review.googlesource.com/c/go/+/653895] 26 src/cmd/go/internal/work/gc.go | 9 ++++++++- 29 diff --git a/src/cmd/go/internal/work/gc.go b/src/cmd/go/internal/work/gc.go 31 --- a/src/cmd/go/internal/work/gc.go 32 +++ b/src/cmd/go/internal/work/gc.go
|
| H A D | 0009-go-Filter-build-paths-on-staticly-linked-arches.patch | 4 Subject: [PATCH 09/11] go: Filter build paths on staticly linked arches 7 embedded in the go binary so that builds are reproducible regardless of build 8 location. This codepath is hit for statically linked go binaries such as those 11 Upstream-Status: Submitted [https://github.com/golang/go/pull/56410] 16 src/cmd/go/internal/load/pkg.go | 15 +++++++++++++-- 19 diff --git a/src/cmd/go/internal/load/pkg.go b/src/cmd/go/internal/load/pkg.go 21 --- a/src/cmd/go/internal/load/pkg.go 22 +++ b/src/cmd/go/internal/load/pkg.go 47 // https://go.dev/issue/52372: only include ldflags if -trimpath is not set,
|
| H A D | 0007-exec.go-filter-out-build-specific-paths-from-linker-.patch | 4 Subject: [PATCH 07/11] exec.go: filter out build-specific paths from linker 15 src/cmd/go/internal/work/exec.go | 25 ++++++++++++++++++++++++- 18 diff --git a/src/cmd/go/internal/work/exec.go b/src/cmd/go/internal/work/exec.go 20 --- a/src/cmd/go/internal/work/exec.go 21 +++ b/src/cmd/go/internal/work/exec.go
|
| H A D | 0001-cmd-go-make-content-based-hash-generation-less-pedan.patch | 4 Subject: [PATCH 01/11] cmd/go: make content-based hash generation less 34 src/cmd/go/internal/envcmd/env.go | 2 +- 35 src/cmd/go/internal/work/exec.go | 44 ++++++++++++++++++++++++------- 38 diff --git a/src/cmd/go/internal/envcmd/env.go b/src/cmd/go/internal/envcmd/env.go 40 --- a/src/cmd/go/internal/envcmd/env.go 41 +++ b/src/cmd/go/internal/envcmd/env.go 50 fmt.Fprintf(os.Stderr, "go: invalid cflags: %v\n", err) 51 diff --git a/src/cmd/go/internal/work/exec.go b/src/cmd/go/internal/work/exec.go 53 --- a/src/cmd/go/internal/work/exec.go 54 +++ b/src/cmd/go/internal/work/exec.go
|
| H A D | 6d265b008e3d106b2706645e5a88cd8e2fb98953.patch | 15 Upstream-Status: Submitted [https://go-review.googlesource.com/c/go/+/391115] 17 src/cmd/link/internal/ld/lib.go | 21 --------------------- 20 diff --git a/src/cmd/link/internal/ld/lib.go b/src/cmd/link/internal/ld/lib.go 22 --- a/src/cmd/link/internal/ld/lib.go 23 +++ b/src/cmd/link/internal/ld/lib.go 34 - // https://go.dev/issue/22040
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/minio/minio/ |
| H A D | modules.txt | 5 # github.com/dustin/go-humanize v1.0.0 9 # github.com/go-ole/go-ole v1.2.6 11 # github.com/goccy/go-json v0.8.1 19 # github.com/json-iterator/go v1.1.12 23 # github.com/mattn/go-ieproxy v0.0.1 25 # github.com/mattn/go-isatty v0.0.14 33 # github.com/minio/madmin-go v1.4.3 37 # github.com/minio/minio-go/v7 v7.0.30 45 # github.com/mitchellh/go-homedir v1.1.0 59 # github.com/secure-io/sio-go v0.3.1 [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/influxdb/influxdb/ |
| H A D | 0001-Use-v2.1.2-xxhash-to-fix-build-with-go-1.17.patch | 4 Subject: [PATCH] Use v2.1.2 xxhash to fix build with go 1.17 17 go.mod | 3 ++- 18 go.sum | 2 ++ 21 --- a/go.mod 22 +++ b/go.mod 29 --- a/go.sum 30 +++ b/go.sum 31 @@ -188,6 +188,8 @@ github.com/kr/pretty v0.1.0/go.mod h1:dA 32 github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= 34 github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= [all …]
|
| H A D | 0001-patch-term-module-for-mips-ispeed-ospeed-termios-abs.patch | 10 go.mod | 2 ++ 13 --- a/go.mod 14 +++ b/go.mod 21 --- a/go.sum 22 +++ b/go.sum 23 @@ -188,6 +188,8 @@ github.com/kr/pretty v0.1.0/go.mod h1:dA 24 github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= 26 github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= 28 +github.com/kraj/term v0.0.0-20210111231523-7c42fcb0e627/go.mod h1:BYR4E+NOQrH+NhXE71KuBNmyR1lQ+yDv… 30 …github.com/kraj/xxhash v1.1.1-0.20211201014032-8254a11eab56/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS…
|
| /openbmc/openbmc/poky/meta/classes-recipe/ |
| H A D | go.bbclass | 11 GO_IMPORT ??= "${@bb.fatal("The recipe needs to set GO_IMPORT for go.bbclass to work")}" 17 GOROOT:class-native = "${STAGING_LIBDIR_NATIVE}/go" 18 GOROOT:class-nativesdk = "${STAGING_DIR_TARGET}${libdir}/go" 19 GOROOT = "${STAGING_LIBDIR}/go" 40 DEPENDS_GOLANG:class-target = "virtual/${TUNE_PKGARCH}-go virtual/${TARGET_PREFIX}go-runtime" 41 DEPENDS_GOLANG:class-native = "go-native" 42 DEPENDS_GOLANG:class-nativesdk = "virtual/${TARGET_PREFIX}go virtual/${TARGET_PREFIX}go-runtime" 47 GO_RPATH_LINK = "${@'-Wl,-rpath-link=${STAGING_DIR_TARGET}${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlin… 48 GO_RPATH = "${@'-r ${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink' if d.getVar('GO_DYNLINK') else ''}" 49 GO_RPATH:class-native = "${@'-r ${STAGING_LIBDIR_NATIVE}/go/pkg/${TARGET_GOTUPLE}_dynlink' if d.get… [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/crucible/ |
| H A D | crucible-licenses.inc | 4 …file://pkg/mod/cloud.google.com/go/compute/metadata@v0.2.3/LICENSE;md5=3b83ef96387f14655fc854ddc3c… 5 file://pkg/mod/cloud.google.com/go/iam@v1.1.5/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57 \ 6 file://pkg/mod/cloud.google.com/go/kms@v1.15.6/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57 \ 7 …file://pkg/mod/cloud.google.com/go/longrunning@v0.5.4/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57… 8 … file://pkg/mod/cloud.google.com/go/security@v1.15.5/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57 \ 11 file://pkg/mod/github.com/go-logr/logr@v1.4.1/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e \ 12 file://pkg/mod/github.com/go-logr/stdr@v1.2.2/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327 \ 15 file://pkg/mod/github.com/google/s2a-go@v0.1.7/LICENSE.md;md5=3b83ef96387f14655fc854ddc3c6bd57 \ 17 …file://pkg/mod/github.com/googleapis/gax-go/v2@v2.12.0/LICENSE;md5=0dd48ae8103725bd7b401261520cdfb… 19 file://pkg/mod/go.opencensus.io@v0.24.0/LICENSE;md5=175792518e4ac015ab6696d16c4f607e \ [all …]
|
| H A D | crucible-go-mods.inc | 2 …gomod://cloud.google.com/go;version=v0.111.0;sha256sum=f17610c7b09a9582375daa59ec73761b0bd7ad31307… 3 …gomod://cloud.google.com/go;version=v0.26.0;mod=1;sha256sum=2218a34f20b971bc195216d4195f57520a2acb… 4 …gomod://cloud.google.com/go/compute;version=v1.23.3;sha256sum=9214cf85837ea8b96bd61e56e297f06d3008… 5 …gomod://cloud.google.com/go/compute/metadata;version=v0.2.3;sha256sum=292864dbd0b1de37a968e285e949… 6 …gomod://cloud.google.com/go/iam;version=v1.1.5;sha256sum=7d218318eef5255587d6db35f2aa9952125881c64… 7 …gomod://cloud.google.com/go/kms;version=v1.15.6;sha256sum=75e7a21b453cad66aae756e3d0c42a7550c299d6… 8 …gomod://cloud.google.com/go/longrunning;version=v0.5.4;sha256sum=a3eb14ee47bfdbca7df05c0011bcd9a86… 9 …gomod://cloud.google.com/go/security;version=v1.15.5;sha256sum=f4dd23e113cad47462715d654c95de55c1c… 13 …gomod://github.com/cncf/udpa/go;version=v0.0.0-20191209042840-269d4d468f6f;mod=1;sha256sum=05f5d4a… 14 …gomod://github.com/davecgh/go-spew;version=v1.1.0;mod=1;sha256sum=bcb29393251237b79a17b6c19bf29134… [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/etcd/ |
| H A D | etcd_3.5.7.bb | 19 GO_IMPORT = "go.etcd.io/etcd/v3" 28 inherit go systemd pkgconfig features_check 34 # network is required by go to get dependent packages 47 # Lots of discussion in go community about how it sets packages to 48 # read-only by default -> https://github.com/golang/go/issues/31481 61 install -m 0755 ${D}${libdir}/go/src/go.etcd.io/etcd/v3/bin/etcd ${D}${bindir} 62 install -m 0755 ${D}${libdir}/go/src/go.etcd.io/etcd/v3/bin/etcdctl ${D}${bindir} 63 install -m 0755 ${D}${libdir}/go/src/go.etcd.io/etcd/v3/bin/etcdutl ${D}${bindir}
|
| /openbmc/openbmc/poky/meta/recipes-core/packagegroups/ |
| H A D | packagegroup-go-sdk-target.bb | 6 go \ 7 go-runtime \ 8 go-runtime-dev \
|