File: build-all

package info (click to toggle)
kernel-wedge 2.106
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 396 kB
  • sloc: perl: 581; sh: 352; makefile: 21
file content (15 lines) | stat: -rwxr-xr-x 521 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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