mirror of
				https://git.proxmox.com/git/mirror_linux-firmware
				synced 2025-11-04 02:24:33 +00:00 
			
		
		
		
	File: entries in the WHENCE file overwrite existing files in the target directory, however, Link: entries are skipped if the file exists in the target directory. This can cause issues if the Link: entry is updated, but the target directory contains an old symlink. Do not skip writing Link: entries if the file exists, always create the symlink. This matches the behavior of File: entries and ensures symlinks will contain values from the WHENCE file. Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com> Signed-off-by: Josh Boyer <jwboyer@kernel.org>
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
# SPDX-License-Identifier: GPL-2.0
 | 
						|
#
 | 
						|
# Copy firmware files based on WHENCE list
 | 
						|
#
 | 
						|
 | 
						|
verbose=:
 | 
						|
prune=no
 | 
						|
 | 
						|
while test $# -gt 0; do
 | 
						|
    case $1 in
 | 
						|
        -v | --verbose)
 | 
						|
            verbose=echo
 | 
						|
            shift
 | 
						|
            ;;
 | 
						|
 | 
						|
        -P | --prune)
 | 
						|
            prune=yes
 | 
						|
            shift
 | 
						|
            ;;
 | 
						|
 | 
						|
        *)
 | 
						|
            if test "x$destdir" != "x"; then
 | 
						|
                echo "ERROR: unknown command-line options: $@"
 | 
						|
                exit 1
 | 
						|
            fi
 | 
						|
 | 
						|
            destdir="$1"
 | 
						|
            shift
 | 
						|
            ;;
 | 
						|
    esac
 | 
						|
done
 | 
						|
 | 
						|
grep '^File:' WHENCE | sed -e's/^File: *//g' -e's/"//g' | while read f; do
 | 
						|
    test -f "$f" || continue
 | 
						|
    $verbose "copying file $f"
 | 
						|
    mkdir -p $destdir/$(dirname "$f")
 | 
						|
    cp -d "$f" $destdir/"$f"
 | 
						|
done
 | 
						|
 | 
						|
grep -E '^Link:' WHENCE | sed -e's/^Link: *//g' -e's/-> //g' | while read f d; do
 | 
						|
    if test -L "$f"; then
 | 
						|
        test -f "$destdir/$f" && continue
 | 
						|
        $verbose "copying link $f"
 | 
						|
        mkdir -p $destdir/$(dirname "$f")
 | 
						|
        cp -d "$f" $destdir/"$f"
 | 
						|
 | 
						|
        if test "x$d" != "x"; then
 | 
						|
            target=`readlink "$f"`
 | 
						|
 | 
						|
            if test "x$target" != "x$d"; then
 | 
						|
                $verbose "WARNING: inconsistent symlink target: $target != $d"
 | 
						|
            else
 | 
						|
                if test "x$prune" != "xyes"; then
 | 
						|
                    $verbose "WARNING: unneeded symlink detected: $f"
 | 
						|
                else
 | 
						|
                    $verbose "WARNING: pruning unneeded symlink $f"
 | 
						|
                    rm -f "$f"
 | 
						|
                fi
 | 
						|
            fi
 | 
						|
        else
 | 
						|
            $verbose "WARNING: missing target for symlink $f"
 | 
						|
        fi
 | 
						|
    else
 | 
						|
        $verbose "creating link $f -> $d"
 | 
						|
        mkdir -p $destdir/$(dirname "$f")
 | 
						|
        ln -sf "$d" "$destdir/$f"
 | 
						|
    fi
 | 
						|
done
 | 
						|
 | 
						|
exit 0
 | 
						|
 | 
						|
# vim: et sw=4 sts=4 ts=4
 |