diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 09:43:48 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 09:43:48 +0000 |
commit | 45883c31c7274fc67bedc4a590d8f2987a792a6a (patch) | |
tree | 6c728e20b450e1c47747ae54cea148b81f720297 /commands/build-all | |
parent | Initial commit. (diff) | |
download | kernel-wedge-45883c31c7274fc67bedc4a590d8f2987a792a6a.tar.xz kernel-wedge-45883c31c7274fc67bedc4a590d8f2987a792a6a.zip |
Adding upstream version 2.105.upstream/2.105upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'commands/build-all')
-rwxr-xr-x | commands/build-all | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/commands/build-all b/commands/build-all new file mode 100755 index 0000000..afb677f --- /dev/null +++ b/commands/build-all @@ -0,0 +1,15 @@ +#!/bin/sh +# This is a wrapper script that can be used to build all architectures. +# +# The script builds all architectures listed in kernel-versions. +# It expects to have the unpacked kernel packages for various arches in +# ../alpha, etc. modules.dep files have to be put in there too if they are +# not shipped in the .deb (varies) +# +# dpkg-cross must be installed, but you do not need a cross compiler. + +set -e + +for arch in $(cut -d ' ' -f 1 kernel-versions | grep -v ^# | uniq); do + kernel-wedge build-arch "$arch" +done |