-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tracking: my patchset vs. mainline #4
Commits on Aug 28, 2020
-
github: setup CI workflow configurations
automated build + check-package + legal-info. Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 34adc67 - Browse repository at this point
Copy the full SHA 34adc67View commit details -
.github: add per-branch upstream file
upstream: origin/upstream-master Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9300b85 - Browse repository at this point
Copy the full SHA 9300b85View commit details -
github: add additional packages to defconfig
Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3225cc4 - Browse repository at this point
Copy the full SHA 3225cc4View commit details -
Revert "package/systemd: bump version to 246"
This reverts commit d6cf469.
Configuration menu - View commit details
-
Copy full SHA for 5088f82 - Browse repository at this point
Copy the full SHA 5088f82View commit details -
Revert "toolchain-external: update Arm AArch64 BE toolchain 9.2-2019.12"
This reverts commit 9bb9bbf.
Configuration menu - View commit details
-
Copy full SHA for 2ae2d2a - Browse repository at this point
Copy the full SHA 2ae2d2aView commit details -
package/rngd: start rngd early in the boot process
Lack of an RNG source can block boot-up on headless systems with few hardware entropy sources. This patch allows rngd to start earlier than the current "basic.target" when systemd is used. Removing the dependency on "basic.target" and by extension, "sockets.target" will allow rngd to start before, for example, docker.sock - which can take some time to become ready without entropy. This is a cherry-pick of a peer project patch: https://patchwork.openembedded.org/patch/163303/ Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dc646bd - Browse repository at this point
Copy the full SHA dc646bdView commit details -
package/tini: install docker-init symlink if not exists
Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a4c8d54 - Browse repository at this point
Copy the full SHA a4c8d54View commit details -
package/docker-proxy: bump to feeff4
docker-proxy (libnetwork) has not added a release tag for a long time. Use the latest master commit hash from 09 Jan 2020 instead. Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f11059f - Browse repository at this point
Copy the full SHA f11059fView commit details -
package/linux-firmware: bump to version 20200817
Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 95bef0e - Browse repository at this point
Copy the full SHA 95bef0eView commit details -
package/linux-firmware: add support for nvidia files
Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6170f2e - Browse repository at this point
Copy the full SHA 6170f2eView commit details -
package/rpi-firmware: bump to latest working rev
Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5e49b65 - Browse repository at this point
Copy the full SHA 5e49b65View commit details -
package/nvidia-modprobe: new package
nvidia-modprobe package adds a utility and headers for probing the NVIDIA hardware at runtime. https://github.com/NVIDIA/nvidia-modprobe Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 97e8acb - Browse repository at this point
Copy the full SHA 97e8acbView commit details -
package/linux4tegra: new package
NVIDIA Linux4Tegra utilities and binaries. https://developer.nvidia.com/embedded/linux-tegra-archive Signed-off-by: Christian Stewart <[email protected]> v1 -> v2: - cjs: add license hashes v2 -> v3: - cjs: fix broken LICENSE hash
Configuration menu - View commit details
-
Copy full SHA for 0216656 - Browse repository at this point
Copy the full SHA 0216656View commit details -
package/nvidia-container-runtime: new package
NVIDIA Container Runtime is a fork of runc which adds support for mounting GPUs into containers. https://github.com/NVIDIA/nvidia-container-runtime Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1fc14d0 - Browse repository at this point
Copy the full SHA 1fc14d0View commit details -
package/libnvidia-container: new package
The libnvidia-container package adds a library and CLI for GPU-backed containers, agnostic to container runtime. https://github.com/NVIDIA/libnvidia-container Signed-off-by: Christian Stewart <[email protected]> v1 -> v2: - cjs: @asaf thanks for review - cjs: remove extra include dirs - cjs: simplify configuration opts
Configuration menu - View commit details
-
Copy full SHA for b0a2886 - Browse repository at this point
Copy the full SHA b0a2886View commit details -
package/nvidia-container-toolkit: new package
NVIDIA Container Toolkit is a OCI-spec hook for support for mounting GPUs into containers. https://github.com/NVIDIA/nvidia-container-toolkit Signed-off-by: Christian Stewart <[email protected]> v2: - cjs: bump version from 1.2.0 -> 1.2.1
Configuration menu - View commit details
-
Copy full SHA for 157ec60 - Browse repository at this point
Copy the full SHA 157ec60View commit details -
configs/jetsontx2_defconfig: new nvidia jetson tx2 defconfig
Adds support for the NVIDIA Jetson TX2. Tested-by: Asaf Kahlon <[email protected]> Signed-off-by: Christian Stewart <[email protected]> v2: - cjs: thanks Asaf for the review - cjs: added Asaf tested-by
Configuration menu - View commit details
-
Copy full SHA for 53a5132 - Browse repository at this point
Copy the full SHA 53a5132View commit details -
package/go: implement go modules integration
The Go compiler needs to know the "import path" to the root of package source repositories. Previously, this was done by creating a fake _gopath in the build directory and symlinking the package source into that path. Go has deprecated the GOPATH mechanism in favor of a new approach - Modules - which specifies the root import path (and dependencies) in a "go.mod" file. This commit moves Buildroot to use the new go.mod approach. Both host and target Go packages compile correctly with small tweaks adjusting the build target specifier. Note: the Go module system will NOT download sources from the Internet due to GOPROXY=off and -mod=vendor. All Buildroot packages currently have "vendor" directories included with dependencies' source code. The environment variables passed to Go during host and target package compilation have been fixed to correctly pass CC, CXX, CFLAGS, and so on. Reference: https://github.com/golang/go/wiki/Modules Signed-off-by: Christian Stewart <[email protected]> v2 -> v3: - cjs: cleaned up spelling and moved extract hook to configure step - cjs: applied fixes from vincent fazio related to host packages v3 -> v4: - cjs: clean up HOST and TARGET variables passed to Go - cjs: fix all CXXflags, cgo env vars to be consistent/correct - cjs: document / explain the difference from GOPATH
Configuration menu - View commit details
-
Copy full SHA for 8bfcff3 - Browse repository at this point
Copy the full SHA 8bfcff3View commit details -
package/runc: remove unnecessary workspace identifier
Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 47a3670 - Browse repository at this point
Copy the full SHA 47a3670View commit details -
package/docker-containerd: fix go-module package identifier/targets
Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c08195f - Browse repository at this point
Copy the full SHA c08195fView commit details -
package/docker-engine: fix go-module package identifier
Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 31b8267 - Browse repository at this point
Copy the full SHA 31b8267View commit details -
package/docker-cli: fix go-module package identifier
Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4607ab4 - Browse repository at this point
Copy the full SHA 4607ab4View commit details -
package/docker-proxy: fix go-module package identifier
Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7123e81 - Browse repository at this point
Copy the full SHA 7123e81View commit details -
package/mender-artifact: fix go-module package build target
Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7db717e - Browse repository at this point
Copy the full SHA 7db717eView commit details -
Delve is a debugger for the Go programming language. Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dc5f8dd - Browse repository at this point
Copy the full SHA dc5f8ddView commit details -
[WIP] package/rpi-userland: add support for aarch64 build
Tested on Pi4 Model B (aarch64). Note: this needs adjustment as per comments from upstream: - GLX is marked as provided when it's not on arm64 Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 227670e - Browse repository at this point
Copy the full SHA 227670eView commit details -
package/linux-firmware: add option for intel iwlwifi 22260
Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bf8a92d - Browse repository at this point
Copy the full SHA bf8a92dView commit details -
package/nvidia-driver: bump to 450.57 for 64 bit and 390.138 for x86
Signed-off-by: Christian Stewart <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7e18dfa - Browse repository at this point
Copy the full SHA 7e18dfaView commit details