diff options
| author | Álvaro Fernández Rojas | 2024-03-04 15:20:55 +0000 |
|---|---|---|
| committer | Álvaro Fernández Rojas | 2024-03-04 15:26:15 +0000 |
| commit | e87be1bc0e024040cc452f1e4ae956a1204f6f70 (patch) | |
| tree | 4500b3a7ebbbec2583bfc47719c2a72be455bfe8 | |
| parent | 81f8b93e3600953fc03d227c25e88919a6768b8c (diff) | |
| download | openwrt-e87be1bc0e024040cc452f1e4ae956a1204f6f70.tar.gz | |
bcm27xx: base-files: fix platform_copy_config
/boot/kernel*.img wildcard only works without quotation marks.
(cherry picked from commit 552c6b24724d81a9651a0e64a01135c18c6487ea)
Fixes: 1a5e51ab0011 ("bcm27xx: base-files: fix platform_copy_config")
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
| -rw-r--r-- | target/linux/bcm27xx/base-files/lib/upgrade/platform.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/bcm27xx/base-files/lib/upgrade/platform.sh b/target/linux/bcm27xx/base-files/lib/upgrade/platform.sh index 956bc1c788..3182a555a9 100644 --- a/target/linux/bcm27xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/bcm27xx/base-files/lib/upgrade/platform.sh @@ -90,7 +90,7 @@ platform_copy_config() { if export_partdevice partdev 1; then mkdir -p /boot - [ -f "/boot/kernel*.img" ] || mount -t vfat -o rw,noatime "/dev/$partdev" /boot + [ -f /boot/kernel*.img ] || mount -t vfat -o rw,noatime "/dev/$partdev" /boot cp -af "$UPGRADE_BACKUP" "/boot/$BACKUP_FILE" tar -C / -zxvf "$UPGRADE_BACKUP" boot/cmdline.txt boot/config.txt sync |