Skip to content
Snippets Groups Projects
Select Git revision
  • 90c5bd37969377c776203861128a1ea94fef48ac
  • v2018.2.x default
  • experimental
  • master
  • v2021.1.2-ffs
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • v2020.2.3-ffs
  • nrbffs/fastd-remove-delay
  • v2020.2.2-ffs
  • v2020.2.1-ffs
  • v2020.2-ffs
  • v2020.2.x
  • v2020.1.3-ffs
  • v2020.1.1-ffs
  • v2020.1-ffs
  • v2019.1.2-ffs
  • v2019.1.1-ffs
  • nrb/test-radv-filter
  • v2019.1-ffs
  • nrbffs/netgear-ex6120
  • v2021.1.2-ffs0.2
  • v2021.1.2-ffs0.1
  • v2021.1.1-ffs0.4
  • v2021.1.1-ffs0.3
  • v2021.1.1-ffs0.2
  • v2021.1.1-ffs0.1
  • v2021.1-ffs0.1
  • v2020.2.3-ffs0.3
  • v2020.2.3-ffs0.2
  • v2020.2.3-ffs0.1
  • v2020.2.2-ffs0.1
  • v2020.2.1-ffs0.1
  • v2020.2-ffs0.1
  • v2020.2
  • v2020.2.x-ffs0.1
  • v2020.1.3-ffs0.1
  • v2020.1.1-ffs0.1
  • v2020.1-ffs0.1
  • v2019.1.2-ffs0.1
  • v2019.1.1-ffs0.1
42 results

0025-x86-sysupgrade-explicitly-rescan-disk-after-writing-partition-table.patch

Blame
  • Forked from firmware / FFS Gluon
    3253 commits behind the upstream repository.
    user avatar
    Matthias Schiffer authored
    90c5bd37
    History
    0025-x86-sysupgrade-explicitly-rescan-disk-after-writing-partition-table.patch 1.01 KiB
    From: Matthias Schiffer <mschiffer@universe-factory.net>
    Date: Wed, 3 May 2017 09:08:29 +0200
    Subject: x86: sysupgrade: explicitly rescan disk after writing partition table
    
    This should ensure that the kernel partition can be mounted in
    platform_copy_config when its size has changed.
    
    Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
    
    diff --git a/target/linux/x86/base-files/lib/upgrade/platform.sh b/target/linux/x86/base-files/lib/upgrade/platform.sh
    index 4fa71999be7be3972676a1019488972dccd57fa2..439ba8f5125d97932248ff966340165a84e1b24a 100644
    --- a/target/linux/x86/base-files/lib/upgrade/platform.sh
    +++ b/target/linux/x86/base-files/lib/upgrade/platform.sh
    @@ -70,6 +70,12 @@ platform_do_upgrade() {
     
     	if [ -n "$diff" ]; then
     		get_image "$@" | dd of="/dev/$diskdev" bs=4096 conv=fsync
    +
    +		# Separate removal and addtion is necessary; otherwise, partition 1
    +		# will be missing if it overlaps with the old partition 2
    +		partx -d - "/dev/$diskdev"
    +		partx -a - "/dev/$diskdev"
    +
     		return 0
     	fi