|
@@ -4,9 +4,11 @@
|
|
# a minimal web-interface for flashing a new firmware.
|
|
# a minimal web-interface for flashing a new firmware.
|
|
|
|
|
|
# make sure we got uboot-envtools and fw_env.config copied over to the ramfs
|
|
# make sure we got uboot-envtools and fw_env.config copied over to the ramfs
|
|
|
|
+# create /var/lock for the lock "fw_setenv.lock" of fw_setenv
|
|
platform_add_ramfs_ubootenv() {
|
|
platform_add_ramfs_ubootenv() {
|
|
[ -e /usr/sbin/fw_printenv ] && install_bin /usr/sbin/fw_printenv /usr/sbin/fw_setenv
|
|
[ -e /usr/sbin/fw_printenv ] && install_bin /usr/sbin/fw_printenv /usr/sbin/fw_setenv
|
|
[ -e /etc/fw_env.config ] && install_file /etc/fw_env.config
|
|
[ -e /etc/fw_env.config ] && install_file /etc/fw_env.config
|
|
|
|
+ mkdir -p $RAM_ROOT/var/lock
|
|
}
|
|
}
|
|
append sysupgrade_pre_upgrade platform_add_ramfs_ubootenv
|
|
append sysupgrade_pre_upgrade platform_add_ramfs_ubootenv
|
|
|
|
|