1
0
Fork 0

Adding debian version 6.12.33-1.

Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
Daniel Baumann 2025-06-22 12:15:16 +02:00
parent 79d69e5050
commit 09ce90cf76
Signed by: daniel.baumann
GPG key ID: BCC918A2ABD66424
1602 changed files with 165255 additions and 0 deletions

24
debian/rules.d/tools/objtool/Makefile vendored Normal file
View file

@ -0,0 +1,24 @@
PROGS = \
objtool \
objtool.real-powerpc \
objtool.real-x86
include $(top_rulesdir)/Makefile.inc
objtool.real-%:
mkdir -p $*
# objtool always uses HOSTCC, HOSTLD, and HOSTAR; we need to override
# these on the command line to make cross-builds work. But it also
# builds fixdep which still needs to be native in a cross-build. Set
# REALHOSTCC and REALHOSTLD variables which will be used for fixdep.
$(MAKE) -C $(top_srcdir)/tools/objtool O=$(CURDIR)/$* \
HOSTARCH=$(KERNEL_ARCH) ARCH=$* \
HOSTCC=$(CC) KBUILD_HOSTCFLAGS='$(CFLAGS) $(CPPFLAGS)' \
HOSTLD=$(CROSS_COMPILE)ld KBUILD_HOSTLDFLAGS='$(LDFLAGS)' \
HOSTAR=$(CROSS_COMPILE)ar \
REALHOSTCC=gcc REALHOSTLD=ld \
V=1
ln -f $*/objtool $@
%: %.o
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^

21
debian/rules.d/tools/objtool/objtool.c vendored Normal file
View file

@ -0,0 +1,21 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc, char **argv)
{
const char *arch;
char prog[1024];
arch = getenv("SRCARCH");
if (!arch) {
fprintf(stderr, "objtool: SRCARCH variable not defined\n");
return 2;
}
snprintf(prog, sizeof(prog), "%s.real-%s", argv[0], arch);
execv(prog, argv);
fprintf(stderr, "objtool: Failed to execute %s\n", prog);
return 1;
}