Skip to content

Commit 5560266

Browse files
committed
containers: Allow to have multiple mounts
Only first mount was sent to podman.
1 parent d8cbdd7 commit 5560266

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

board/common/rootfs/usr/sbin/container

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ while [ "$1" != "" ]; do
550550
;;
551551
-m | --mount)
552552
shift
553-
mount="--mount=$1"
553+
mount="$mount --mount=$1"
554554
;;
555555
--manual)
556556
manual=true
@@ -696,7 +696,7 @@ case $cmd in
696696
oci)
697697
find $BUILTIN $DOWNLOADS -type f 2>/dev/null
698698
;;
699-
*)
699+
*)
700700
podman ps $all --format "{{.Names}}"
701701
;;
702702
esac

doc/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ All notable changes to the project are documented in this file.
1414
- Add HDMI and USB support for iMX8MP-evk
1515

1616
### Fixes
17+
- Fix containers with multiple mounts
1718

1819

1920
[v25.04.0][] - 2025-04-30

0 commit comments

Comments
 (0)