2020-09-19 15:19:41 +02:00
|
|
|
From 307e7f5744b7c84af4c07091c5310cf4f9514694 Mon Sep 17 00:00:00 2001
|
package/libcap: fix static linking issues
Since the bump of libcap to 2.42, host-libcap unconditionally tries to
build a shared library, which fails on build machines where the static
version of the C library is not available.
This issue was reported upstream, who fixed it by two different
commits, which are backported as patches 0001 and 0002. They require
passing a DYNAMIC= value, which should be "yes" to enable dynamic
linking, or empty when not using dynamic linking.
However, other upstream changes broke our logic to support static-only
linking for the target. So we introduce a 0003 patch which extends how
the DYNAMIC flag is used to disable the build of the shared library in
the libcap/ folder. This allows to greatly simplify libcap.mk.
Note that the refactoring is mixed with the fix: the two are hardly
splitable. We need to be able to pass the same options at all steps, and
especially the staging step, otherwise some code gets compiled with the
host compiler, installed in staging, and thus fails the architecture
check later on.
Fixes:
host-libcap build failure on system without a static libc
http://autobuild.buildroot.net/results/4b14458014e420ffe088f118e7d0261e67f2d551/
libcap build failure on static only systems
http://autobuild.buildroot.net/results/8961759067c4639ae697b6ee5db606f098b7c7e8/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
[yann.morin.1998@free.fr:
- also pass DYNAMIC=yes at host-install step
- extend commit log to explain why we refactor and fix together
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-09-09 23:02:50 +02:00
|
|
|
From: "Andrew G. Morgan" <morgan@kernel.org>
|
|
|
|
Date: Mon, 7 Sep 2020 12:24:43 -0700
|
2020-09-19 15:19:41 +02:00
|
|
|
Subject: Support dynamic test compilation and execution.
|
package/libcap: fix static linking issues
Since the bump of libcap to 2.42, host-libcap unconditionally tries to
build a shared library, which fails on build machines where the static
version of the C library is not available.
This issue was reported upstream, who fixed it by two different
commits, which are backported as patches 0001 and 0002. They require
passing a DYNAMIC= value, which should be "yes" to enable dynamic
linking, or empty when not using dynamic linking.
However, other upstream changes broke our logic to support static-only
linking for the target. So we introduce a 0003 patch which extends how
the DYNAMIC flag is used to disable the build of the shared library in
the libcap/ folder. This allows to greatly simplify libcap.mk.
Note that the refactoring is mixed with the fix: the two are hardly
splitable. We need to be able to pass the same options at all steps, and
especially the staging step, otherwise some code gets compiled with the
host compiler, installed in staging, and thus fails the architecture
check later on.
Fixes:
host-libcap build failure on system without a static libc
http://autobuild.buildroot.net/results/4b14458014e420ffe088f118e7d0261e67f2d551/
libcap build failure on static only systems
http://autobuild.buildroot.net/results/8961759067c4639ae697b6ee5db606f098b7c7e8/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
[yann.morin.1998@free.fr:
- also pass DYNAMIC=yes at host-install step
- extend commit log to explain why we refactor and fix together
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-09-09 23:02:50 +02:00
|
|
|
|
|
|
|
make DYNAMIC=yes test sudotest
|
|
|
|
|
|
|
|
works now. Thomas Petazzoni provided a patch that built
|
|
|
|
the tests this way, but I've restructured things to
|
|
|
|
make the above command line work against the uninstalled
|
|
|
|
library builds.
|
|
|
|
|
|
|
|
Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
|
2020-09-19 15:19:41 +02:00
|
|
|
[Retrieved from:
|
|
|
|
https://git.kernel.org/pub/scm/libs/libcap/libcap.git/commit/?id=307e7f5744b7c84af4c07091c5310cf4f9514694]
|
|
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
package/libcap: fix static linking issues
Since the bump of libcap to 2.42, host-libcap unconditionally tries to
build a shared library, which fails on build machines where the static
version of the C library is not available.
This issue was reported upstream, who fixed it by two different
commits, which are backported as patches 0001 and 0002. They require
passing a DYNAMIC= value, which should be "yes" to enable dynamic
linking, or empty when not using dynamic linking.
However, other upstream changes broke our logic to support static-only
linking for the target. So we introduce a 0003 patch which extends how
the DYNAMIC flag is used to disable the build of the shared library in
the libcap/ folder. This allows to greatly simplify libcap.mk.
Note that the refactoring is mixed with the fix: the two are hardly
splitable. We need to be able to pass the same options at all steps, and
especially the staging step, otherwise some code gets compiled with the
host compiler, installed in staging, and thus fails the architecture
check later on.
Fixes:
host-libcap build failure on system without a static libc
http://autobuild.buildroot.net/results/4b14458014e420ffe088f118e7d0261e67f2d551/
libcap build failure on static only systems
http://autobuild.buildroot.net/results/8961759067c4639ae697b6ee5db606f098b7c7e8/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
[yann.morin.1998@free.fr:
- also pass DYNAMIC=yes at host-install step
- extend commit log to explain why we refactor and fix together
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-09-09 23:02:50 +02:00
|
|
|
---
|
|
|
|
Make.Rules | 2 +-
|
|
|
|
go/Makefile | 6 +++---
|
|
|
|
go/try-launching.go | 2 +-
|
|
|
|
progs/.gitignore | 1 +
|
|
|
|
progs/Makefile | 15 ++++++++++-----
|
|
|
|
progs/quicktest.sh | 8 ++++----
|
|
|
|
tests/Makefile | 23 +++++++++++++++--------
|
|
|
|
7 files changed, 35 insertions(+), 22 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/Make.Rules b/Make.Rules
|
2020-09-19 15:19:41 +02:00
|
|
|
index c62f541..8c3f9b3 100644
|
package/libcap: fix static linking issues
Since the bump of libcap to 2.42, host-libcap unconditionally tries to
build a shared library, which fails on build machines where the static
version of the C library is not available.
This issue was reported upstream, who fixed it by two different
commits, which are backported as patches 0001 and 0002. They require
passing a DYNAMIC= value, which should be "yes" to enable dynamic
linking, or empty when not using dynamic linking.
However, other upstream changes broke our logic to support static-only
linking for the target. So we introduce a 0003 patch which extends how
the DYNAMIC flag is used to disable the build of the shared library in
the libcap/ folder. This allows to greatly simplify libcap.mk.
Note that the refactoring is mixed with the fix: the two are hardly
splitable. We need to be able to pass the same options at all steps, and
especially the staging step, otherwise some code gets compiled with the
host compiler, installed in staging, and thus fails the architecture
check later on.
Fixes:
host-libcap build failure on system without a static libc
http://autobuild.buildroot.net/results/4b14458014e420ffe088f118e7d0261e67f2d551/
libcap build failure on static only systems
http://autobuild.buildroot.net/results/8961759067c4639ae697b6ee5db606f098b7c7e8/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
[yann.morin.1998@free.fr:
- also pass DYNAMIC=yes at host-install step
- extend commit log to explain why we refactor and fix together
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-09-09 23:02:50 +02:00
|
|
|
--- a/Make.Rules
|
|
|
|
+++ b/Make.Rules
|
|
|
|
@@ -69,7 +69,7 @@ WARNINGS=-Wall -Wwrite-strings \
|
|
|
|
LD=$(CC) -Wl,-x -shared
|
|
|
|
LDFLAGS ?= #-g
|
|
|
|
LIBCAPLIB := -L$(topdir)/libcap -lcap
|
|
|
|
-LIBPSXLIB := -L$(topdir)/libcap -lpsx -lpthread
|
|
|
|
+LIBPSXLIB := -L$(topdir)/libcap -lpsx -lpthread -Wl,-wrap,pthread_create
|
|
|
|
|
|
|
|
BUILD_GPERF := $(shell which gperf >/dev/null 2>/dev/null && echo yes)
|
|
|
|
|
|
|
|
diff --git a/go/Makefile b/go/Makefile
|
|
|
|
index c5ad7aa..19b3e29 100644
|
|
|
|
--- a/go/Makefile
|
|
|
|
+++ b/go/Makefile
|
|
|
|
@@ -23,8 +23,8 @@ all: $(PSXGOPACKAGE) $(CAPGOPACKAGE) web compare-cap try-launching
|
|
|
|
$(DEPS):
|
|
|
|
make -C ../libcap all
|
|
|
|
|
|
|
|
-../progs/capsh:
|
|
|
|
- make -C ../progs capsh
|
|
|
|
+../progs/tcapsh-static:
|
|
|
|
+ make -C ../progs tcapsh-static
|
|
|
|
|
|
|
|
src/$(IMPORTDIR)/psx:
|
|
|
|
mkdir -p "src/$(IMPORTDIR)"
|
|
|
|
@@ -70,7 +70,7 @@ ifeq ($(CGO_REQUIRED),0)
|
|
|
|
CGO_ENABLED="1" CGO_LDFLAGS_ALLOW="$(CGO_LDFLAGS_ALLOW)" GOPATH=$(GOPATH) $(GO) build -o $@-cgo $<
|
|
|
|
endif
|
|
|
|
|
|
|
|
-test: all ../progs/capsh
|
|
|
|
+test: all ../progs/tcapsh-static
|
|
|
|
CGO_LDFLAGS_ALLOW="$(CGO_LDFLAGS_ALLOW)" GOPATH="$(GOPATH)" $(GO) test $(IMPORTDIR)/psx
|
|
|
|
CGO_LDFLAGS_ALLOW="$(CGO_LDFLAGS_ALLOW)" GOPATH="$(GOPATH)" $(GO) test $(IMPORTDIR)/cap
|
|
|
|
LD_LIBRARY_PATH=../libcap ./compare-cap
|
|
|
|
diff --git a/go/try-launching.go b/go/try-launching.go
|
|
|
|
index 1c3d477..272fd0a 100644
|
|
|
|
--- a/go/try-launching.go
|
|
|
|
+++ b/go/try-launching.go
|
|
|
|
@@ -32,7 +32,7 @@ func tryLaunching() {
|
|
|
|
}{
|
|
|
|
{args: []string{root + "/go/ok"}},
|
|
|
|
{
|
|
|
|
- args: []string{root + "/progs/capsh", "--dropped=cap_chown", "--is-uid=123", "--is-gid=456", "--has-a=cap_setuid"},
|
|
|
|
+ args: []string{root + "/progs/tcapsh-static", "--dropped=cap_chown", "--is-uid=123", "--is-gid=456", "--has-a=cap_setuid"},
|
|
|
|
iab: "!cap_chown,^cap_setuid,cap_sys_admin",
|
|
|
|
uid: 123,
|
|
|
|
gid: 456,
|
|
|
|
diff --git a/progs/.gitignore b/progs/.gitignore
|
|
|
|
index 1c7ff23..978229e 100644
|
|
|
|
--- a/progs/.gitignore
|
|
|
|
+++ b/progs/.gitignore
|
|
|
|
@@ -1,4 +1,5 @@
|
|
|
|
capsh
|
|
|
|
+tcapsh-static
|
|
|
|
getcap
|
|
|
|
getpcaps
|
|
|
|
setcap
|
|
|
|
diff --git a/progs/Makefile b/progs/Makefile
|
|
|
|
index 076e44f..1b27c41 100644
|
|
|
|
--- a/progs/Makefile
|
|
|
|
+++ b/progs/Makefile
|
|
|
|
@@ -8,13 +8,15 @@ PROGS=getpcaps capsh getcap setcap
|
|
|
|
|
|
|
|
BUILD=$(PROGS)
|
|
|
|
|
|
|
|
-ifneq ($(DYNAMIC),yes)
|
|
|
|
+ifeq ($(DYNAMIC),yes)
|
|
|
|
+LDPATH = LD_LIBRARY_PATH=../libcap
|
|
|
|
+else
|
|
|
|
LDFLAGS += --static
|
|
|
|
endif
|
|
|
|
|
|
|
|
DEPS=../libcap/libcap.a ../libcap/libpsx.a
|
|
|
|
|
|
|
|
-all: $(BUILD)
|
|
|
|
+all: $(BUILD) tcapsh-static
|
|
|
|
|
|
|
|
$(DEPS):
|
|
|
|
make -C ../libcap all
|
|
|
|
@@ -36,9 +38,12 @@ endif
|
|
|
|
|
|
|
|
test: $(PROGS)
|
|
|
|
|
|
|
|
-sudotest: test
|
|
|
|
- sudo ./quicktest.sh
|
|
|
|
+tcapsh-static: capsh.c $(DEPS)
|
|
|
|
+ $(CC) $(IPATH) $(CAPSH_SHELL) $(CFLAGS) -o $@ $< $(LIBCAPLIB) $(LDFLAGS) --static
|
|
|
|
+
|
|
|
|
+sudotest: test tcapsh-static
|
|
|
|
+ sudo $(LDPATH) ./quicktest.sh
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$(LOCALCLEAN)
|
|
|
|
- rm -f *.o $(BUILD) tcapsh ping hack.sh compare-cap
|
|
|
|
+ rm -f *.o $(BUILD) tcapsh* privileged ping hack.sh compare-cap
|
|
|
|
diff --git a/progs/quicktest.sh b/progs/quicktest.sh
|
|
|
|
index fbe98a6..5873317 100755
|
|
|
|
--- a/progs/quicktest.sh
|
|
|
|
+++ b/progs/quicktest.sh
|
|
|
|
@@ -45,7 +45,7 @@ pass_capsh () {
|
|
|
|
pass_capsh --print
|
|
|
|
|
|
|
|
# Make a local non-setuid-0 version of capsh and call it privileged
|
|
|
|
-cp ./capsh ./privileged && /bin/chmod -s ./privileged
|
|
|
|
+cp ./tcapsh-static ./privileged && /bin/chmod -s ./privileged
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "Failed to copy capsh for capability manipulation"
|
|
|
|
exit 1
|
|
|
|
@@ -77,7 +77,7 @@ pass_capsh --mode=PURE1E --iab='!%cap_chown,cap_sys_admin'
|
|
|
|
pass_capsh --keep=0 --keep=1 --keep=0 --keep=1 --print
|
|
|
|
|
|
|
|
/bin/rm -f tcapsh
|
|
|
|
-/bin/cp capsh tcapsh
|
|
|
|
+/bin/cp tcapsh-static tcapsh
|
|
|
|
/bin/chown root.root tcapsh
|
|
|
|
/bin/chmod u+s tcapsh
|
|
|
|
/bin/ls -l tcapsh
|
|
|
|
@@ -166,7 +166,7 @@ pass_capsh --keep=1 --uid=$nouid --caps=cap_setpcap=ep \
|
|
|
|
|
|
|
|
# Verify we can chroot
|
|
|
|
pass_capsh --chroot=$(/bin/pwd)
|
|
|
|
-pass_capsh --chroot=$(/bin/pwd) ==
|
|
|
|
+pass_capsh -- -c "./tcapsh-static --chroot=$(/bin/pwd) =="
|
|
|
|
fail_capsh --chroot=$(/bin/pwd) -- -c "echo oops"
|
|
|
|
|
|
|
|
./capsh --has-ambient
|
|
|
|
@@ -216,7 +216,7 @@ echo "testing namespaced file caps"
|
|
|
|
# nsprivileged capsh will have an ns rootid value (this is
|
|
|
|
# the same setup as an earlier test but with a ns file cap).
|
|
|
|
rm -f nsprivileged
|
|
|
|
-cp ./capsh ./nsprivileged && /bin/chmod -s ./nsprivileged
|
|
|
|
+cp ./tcapsh-static ./nsprivileged && /bin/chmod -s ./nsprivileged
|
|
|
|
./setcap -n 1 all=ep ./nsprivileged
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
./getcap -n ./nsprivileged | fgrep "[rootid=1]"
|
|
|
|
diff --git a/tests/Makefile b/tests/Makefile
|
2020-09-19 15:19:41 +02:00
|
|
|
index 0c86ee8..a555887 100644
|
package/libcap: fix static linking issues
Since the bump of libcap to 2.42, host-libcap unconditionally tries to
build a shared library, which fails on build machines where the static
version of the C library is not available.
This issue was reported upstream, who fixed it by two different
commits, which are backported as patches 0001 and 0002. They require
passing a DYNAMIC= value, which should be "yes" to enable dynamic
linking, or empty when not using dynamic linking.
However, other upstream changes broke our logic to support static-only
linking for the target. So we introduce a 0003 patch which extends how
the DYNAMIC flag is used to disable the build of the shared library in
the libcap/ folder. This allows to greatly simplify libcap.mk.
Note that the refactoring is mixed with the fix: the two are hardly
splitable. We need to be able to pass the same options at all steps, and
especially the staging step, otherwise some code gets compiled with the
host compiler, installed in staging, and thus fails the architecture
check later on.
Fixes:
host-libcap build failure on system without a static libc
http://autobuild.buildroot.net/results/4b14458014e420ffe088f118e7d0261e67f2d551/
libcap build failure on static only systems
http://autobuild.buildroot.net/results/8961759067c4639ae697b6ee5db606f098b7c7e8/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
[yann.morin.1998@free.fr:
- also pass DYNAMIC=yes at host-install step
- extend commit log to explain why we refactor and fix together
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-09-09 23:02:50 +02:00
|
|
|
--- a/tests/Makefile
|
|
|
|
+++ b/tests/Makefile
|
|
|
|
@@ -7,6 +7,12 @@ include ../Make.Rules
|
|
|
|
|
|
|
|
DEPS=../libcap/libcap.a ../libcap/libpsx.a
|
|
|
|
|
|
|
|
+ifeq ($(DYNAMIC),yes)
|
|
|
|
+LDPATH = LD_LIBRARY_PATH=../libcap
|
|
|
|
+else
|
|
|
|
+LDFLAGS += --static
|
|
|
|
+endif
|
|
|
|
+
|
2020-09-19 15:19:41 +02:00
|
|
|
all: psx_test libcap_psx_test libcap_launch_test
|
package/libcap: fix static linking issues
Since the bump of libcap to 2.42, host-libcap unconditionally tries to
build a shared library, which fails on build machines where the static
version of the C library is not available.
This issue was reported upstream, who fixed it by two different
commits, which are backported as patches 0001 and 0002. They require
passing a DYNAMIC= value, which should be "yes" to enable dynamic
linking, or empty when not using dynamic linking.
However, other upstream changes broke our logic to support static-only
linking for the target. So we introduce a 0003 patch which extends how
the DYNAMIC flag is used to disable the build of the shared library in
the libcap/ folder. This allows to greatly simplify libcap.mk.
Note that the refactoring is mixed with the fix: the two are hardly
splitable. We need to be able to pass the same options at all steps, and
especially the staging step, otherwise some code gets compiled with the
host compiler, installed in staging, and thus fails the architecture
check later on.
Fixes:
host-libcap build failure on system without a static libc
http://autobuild.buildroot.net/results/4b14458014e420ffe088f118e7d0261e67f2d551/
libcap build failure on static only systems
http://autobuild.buildroot.net/results/8961759067c4639ae697b6ee5db606f098b7c7e8/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
[yann.morin.1998@free.fr:
- also pass DYNAMIC=yes at host-install step
- extend commit log to explain why we refactor and fix together
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-09-09 23:02:50 +02:00
|
|
|
|
|
|
|
$(DEPS):
|
|
|
|
@@ -19,30 +25,31 @@ sudotest: test run_libcap_launch_test run_libcap_launch_test
|
|
|
|
install: all
|
|
|
|
|
|
|
|
run_psx_test: psx_test
|
|
|
|
- ./psx_test
|
|
|
|
+ $(LDPATH) ./psx_test
|
|
|
|
|
|
|
|
psx_test: psx_test.c $(DEPS)
|
|
|
|
- $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LIBPSXLIB) -Wl,-wrap,pthread_create
|
|
|
|
+ $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LIBPSXLIB)
|
|
|
|
|
|
|
|
run_libcap_psx_test: libcap_psx_test
|
|
|
|
- ./libcap_psx_test
|
|
|
|
+ $(LDPATH) ./libcap_psx_test
|
|
|
|
|
|
|
|
libcap_psx_test: libcap_psx_test.c $(DEPS)
|
|
|
|
- $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LIBCAPLIB) $(LIBPSXLIB) -Wl,-wrap,pthread_create --static
|
|
|
|
+ $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LIBCAPLIB) $(LIBPSXLIB) $(LDFLAGS)
|
|
|
|
|
|
|
|
run_libcap_launch_test: libcap_launch_test libcap_psx_launch_test noop
|
|
|
|
- sudo ./libcap_launch_test
|
|
|
|
- sudo ./libcap_psx_launch_test
|
|
|
|
+ sudo $(LDPATH) ./libcap_launch_test
|
|
|
|
+ sudo $(LDPATH) ./libcap_psx_launch_test
|
|
|
|
|
|
|
|
libcap_launch_test: libcap_launch_test.c $(DEPS)
|
|
|
|
- $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LIBCAPLIB) --static
|
|
|
|
+ $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LIBCAPLIB) $(LDFLAGS)
|
|
|
|
|
|
|
|
# this varies only slightly from the above insofar as it currently
|
|
|
|
# only links in the pthreads fork support. TODO() we need to change
|
|
|
|
# the source to do something interesting with pthreads.
|
|
|
|
libcap_psx_launch_test: libcap_launch_test.c $(DEPS)
|
|
|
|
- $(CC) $(CFLAGS) $(IPATH) -DWITH_PTHREADS $< -o $@ $(LIBCAPLIB) $(LIBPSXLIB) -Wl,-wrap,pthread_create --static
|
|
|
|
+ $(CC) $(CFLAGS) $(IPATH) -DWITH_PTHREADS $< -o $@ $(LIBCAPLIB) $(LIBPSXLIB) $(LDFLAGS)
|
|
|
|
|
|
|
|
+# This one runs in a chroot with no shared library files.
|
|
|
|
noop: noop.c
|
|
|
|
$(CC) $(CFLAGS) $< -o $@ --static
|
|
|
|
|
|
|
|
--
|
2020-09-19 15:19:41 +02:00
|
|
|
cgit 1.2.3-1.el7
|
package/libcap: fix static linking issues
Since the bump of libcap to 2.42, host-libcap unconditionally tries to
build a shared library, which fails on build machines where the static
version of the C library is not available.
This issue was reported upstream, who fixed it by two different
commits, which are backported as patches 0001 and 0002. They require
passing a DYNAMIC= value, which should be "yes" to enable dynamic
linking, or empty when not using dynamic linking.
However, other upstream changes broke our logic to support static-only
linking for the target. So we introduce a 0003 patch which extends how
the DYNAMIC flag is used to disable the build of the shared library in
the libcap/ folder. This allows to greatly simplify libcap.mk.
Note that the refactoring is mixed with the fix: the two are hardly
splitable. We need to be able to pass the same options at all steps, and
especially the staging step, otherwise some code gets compiled with the
host compiler, installed in staging, and thus fails the architecture
check later on.
Fixes:
host-libcap build failure on system without a static libc
http://autobuild.buildroot.net/results/4b14458014e420ffe088f118e7d0261e67f2d551/
libcap build failure on static only systems
http://autobuild.buildroot.net/results/8961759067c4639ae697b6ee5db606f098b7c7e8/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
[yann.morin.1998@free.fr:
- also pass DYNAMIC=yes at host-install step
- extend commit log to explain why we refactor and fix together
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-09-09 23:02:50 +02:00
|
|
|
|