mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 13:47:54 +00:00
13 lines
305 B
Bash
13 lines
305 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
mkdir -p /sysroot/bin
|
||
|
cp /bin/journalctl /sysroot/bin/
|
||
|
# Get all library dependencies from the binary
|
||
|
for lib in $(ldd /bin/journalctl | grep -oE '(\/.+?) '); do
|
||
|
mkdir -p "/sysroot/$(dirname "$lib")"
|
||
|
# Copy the dependency dereferencing any symlinks
|
||
|
cp -L "$lib" "/sysroot/$lib"
|
||
|
done
|