Skip to content
Snippets Groups Projects
Select Git revision
  • 0005b3b5a2e7ceddedaff4196104d185c76d2923
  • experimental default protected
  • v2023.2.5-ffs
  • nrb/ex400-remove-wps
  • nrb/airmax-test
  • v2023.2.4-ffs
  • nrb/ar9344-reset-sequence
  • autinerd/experimental-openwrt-24.10
  • v2023.2.3-ffs
  • v2023.2.2-ffs
  • v2023.2-ffs
  • v2023.1-ffs
  • v2022.1.4-ffs
  • feature/addMikrotikwAP
  • v2022.1.3-ffs
  • v2021.1.2-ffs
  • v2022.1.1-ffs
  • master protected
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • experimental-2025-07-01
  • experimental-2025-07-01-base
  • experimental-2025-06-25
  • experimental-2025-06-25-base
  • experimental-2025-06-24
  • experimental-2025-06-24-base
  • experimental-2025-06-22
  • experimental-2025-06-22-base
  • v2023.2.5-ffs0.1
  • experimental-2025-06-08
  • experimental-2025-06-08-base
  • experimental-2025-06-06
  • experimental-2025-06-06-base
  • experimental-2025-05-27
  • experimental-2025-05-27-base
  • experimental-2025-05-18
  • experimental-2025-05-18-base
  • experimental-2025-05-15
  • experimental-2025-05-15-base
  • experimental-2025-05-13
41 results

20gluon-radvd

Blame
  • 0026-mvebu-fix-sysupgrade.patch 3.31 KiB
    From: Matthias Schiffer <mschiffer@universe-factory.net>
    Date: Thu, 1 Jun 2017 18:39:12 +0200
    Subject: mvebu: fix sysupgrade
    
    mvebu was modifying RAMFS_COPY_BIN and RAMFS_COPY_DATA from a
    sysupgrade_pre_upgrade hook. As the ramfs is created from stage2, this
    did not have an effect anymore after the staged sysupgrade changes.
    
    As it doesn't really hurt to copy fw_printenv and fw_setenv
    unconditionally, simply add them in /lib/upgrade/platform.sh, so stage2
    will see them.
    
    Config copying is moved to a function called by platform_copy_config, where
    it belongs.
    
    Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
    Fixes: FS#821
    Fixes: 30f61a34b4cf "base-files: always use staged sysupgrade"
    
    diff --git a/package/base-files/files/lib/upgrade/stage2 b/package/base-files/files/lib/upgrade/stage2
    index cc8047d988e39ca9ba27d2588744aad469d1d978..bdbb8926643287f48a4ae62c5d1d4b4a29130859 100755
    --- a/package/base-files/files/lib/upgrade/stage2
    +++ b/package/base-files/files/lib/upgrade/stage2
    @@ -48,7 +48,7 @@ switch_to_ramfs() {
     		/bin/sleep /bin/zcat /usr/bin/bzcat /usr/bin/printf /usr/bin/wc \
     		/bin/cut /usr/bin/printf /bin/sync /bin/mkdir /bin/rmdir	\
     		/bin/rm /usr/bin/basename /bin/kill /bin/chmod /usr/bin/find \
    -		/bin/mknod
    +		/bin/mknod /bin/touch
     
     	install_bin /sbin/mtd
     	install_bin /sbin/mount_root
    diff --git a/target/linux/mvebu/base-files/lib/upgrade/linksys.sh b/target/linux/mvebu/base-files/lib/upgrade/linksys.sh
    index d06a1b8ed0534364b595618f24b65f9f3a3e275d..63d1cd14a4deed407b217a518ae25a752f62969e 100644
    --- a/target/linux/mvebu/base-files/lib/upgrade/linksys.sh
    +++ b/target/linux/mvebu/base-files/lib/upgrade/linksys.sh
    @@ -73,21 +73,7 @@ platform_do_upgrade_linksys() {
     	}
     }
     
    -linksys_preupgrade() {
    -	local board=$(mvebu_board_name)
    -
    -	case "$board" in
    -	armada-385-linksys-caiman|armada-385-linksys-cobra|armada-385-linksys-shelby|armada-xp-linksys-mamba|armada-385-linksys-rango)
    -		export RAMFS_COPY_BIN="${RAMFS_COPY_BIN} /usr/sbin/fw_printenv /usr/sbin/fw_setenv"
    -		export RAMFS_COPY_BIN="${RAMFS_COPY_BIN} /bin/mkdir /bin/touch"
    -		export RAMFS_COPY_DATA="${RAMFS_COPY_DATA} /etc/fw_env.config /var/lock/fw_printenv.lock"
    -
    -		[ -f /tmp/sysupgrade.tgz ] && {
    -			cp /tmp/sysupgrade.tgz /tmp/syscfg/sysupgrade.tgz
    -		}
    -		;;
    -	esac
    +platform_copy_config_linksys() {
    +	cp -f /tmp/sysupgrade.tgz /tmp/syscfg/sysupgrade.tgz
    +	sync
     }
    -
    -append sysupgrade_pre_upgrade linksys_preupgrade
    -
    diff --git a/target/linux/mvebu/base-files/lib/upgrade/platform.sh b/target/linux/mvebu/base-files/lib/upgrade/platform.sh
    index 77578e28d42fb7ca5e3f057e42ac5818e851736f..55c084483995d548556a560e171462f2d5456172 100755
    --- a/target/linux/mvebu/base-files/lib/upgrade/platform.sh
    +++ b/target/linux/mvebu/base-files/lib/upgrade/platform.sh
    @@ -5,7 +5,8 @@
     
     . /lib/mvebu.sh
     
    -RAMFS_COPY_DATA=/lib/mvebu.sh
    +RAMFS_COPY_BIN='/usr/sbin/fw_printenv /usr/sbin/fw_setenv'
    +RAMFS_COPY_DATA='/lib/mvebu.sh /etc/fw_env.config /var/lock/fw_printenv.lock'
     REQUIRE_IMAGE_METADATA=1
     
     platform_check_image() {
    @@ -31,6 +32,9 @@ platform_copy_config() {
     	local board=$(mvebu_board_name)
     
     	case "$board" in
    +	armada-385-linksys-caiman|armada-385-linksys-cobra|armada-385-linksys-rango|armada-385-linksys-shelby|armada-xp-linksys-mamba)
    +		platform_copy_config_linksys
    +		;;
     	armada-388-clearfog)
     		platform_copy_config_clearfog "$ARGV"
     		;;