Skip to content

Commit

Permalink
remove extra ROOTFS var from build.sh (#128) (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
webconn authored Aug 25, 2023
1 parent 0d0685a commit d5a7a43
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
wb-utils (4.12.0-wb106) stable; urgency=medium

* fix bootlet's build.sh in devenv builds; no functional changes

-- Nikita Maslov <[email protected]> Fri, 25 Aug 2023 15:49:22 +0600

wb-utils (4.12.0-wb105) stable; urgency=medium

* wb-run-update: check new FIT compatibility by looking for DTB presence
Expand Down
4 changes: 2 additions & 2 deletions utils/lib/wb-image-update/fit/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ install_from_rootfs() {
dst="$src"
shift
}
install_file "$ROOTFS/$src" "$dst"
install_file "$src" "$dst"

# If file is executable, need to get its shared lib dependencies too
if [[ -x "$ROOTFS/$src" ]]; then
if [[ -x "$src" ]]; then
ldd "$src" |
sed -rn 's#[^/]*(/[^ ]*).*#\1#p' |
while read -r lib; do
Expand Down

0 comments on commit d5a7a43

Please sign in to comment.