mirror of
https://github.com/lingble/meta-tegra.git
synced 2025-11-02 05:17:52 +00:00
tar-l4t-workaround: fix up for current fetcher args
bitbake fetcher used to pass '--no-same-owner -xpf <filename>' but now passes '--extract --no-same-owner -p -f <filename>' Wrapper script updated to handle new arguments. Signed-off-by: Kurt Kiefer <kurt.kiefer@arthrex.com>
This commit is contained in:
committed by
Matt Madison
parent
e7abe9410d
commit
1d1d70a96d
@@ -1,10 +1,10 @@
|
||||
#!/bin/sh
|
||||
# bitbake fetcher passes --no-same-owner -xpf <filename>
|
||||
# bitbake fetcher passes --extract --no-same-owner -p -f <filename>
|
||||
tarargs=
|
||||
extraarg=
|
||||
while [ $# -gt 0 ]; do
|
||||
case "$1" in
|
||||
-x*f)
|
||||
-f)
|
||||
tarargs="$tarargs $1 $2"
|
||||
if [ "$2" = "data.tar.zst" ]; then
|
||||
tarargs="$tarargs -Iunzstd"
|
||||
|
||||
Reference in New Issue
Block a user