Skip to content
Snippets Groups Projects
Verified Commit 27ffdc9e authored by Michal Hrusecky's avatar Michal Hrusecky :mouse: Committed by Karel Koci
Browse files

turris-nor-update: Make it work again

Fix two conditions that were wrongly written and prevent script from
running and also remove debugging leftover that made every run dry-run.
parent ed42e194
Branches
Tags
1 merge request!712Draft: turris-nor-update: Make it work again
......@@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=turris-nor-update
PKG_VERSION:=1.0
PKG_VERSION:=1.0.1
PKG_RELEASE:=1
PKG_MAINTAINER:=CZ.NIC <packaging@turris.cz>
......
......@@ -67,11 +67,11 @@ flash() {
shift 2
while [ -n "${1:+x}" ] && [ ! -r "$1" ]; do
while [ "$# -gt 0 ] && [ ! -r "$1" ]; do
shift
done
if [ -z "${1:+x}" ]; then
if [ "$#" -eq 0 ]; then
echo "Can't find anything to flash to '$flashing' partition"
return 0
fi
......@@ -81,7 +81,6 @@ flash() {
fi
v_echo "Checking and flashing '$flashing' partition: $1 -> /dev/$part"
return 0 # TODO remove
if mtd verify "$1" "/dev/$part"; then
v_echo "Partition with $flashing was up to date already."
else
......@@ -140,7 +139,7 @@ fix_boot_scr
# To simplify the configuration so we can use relative paths for parts of the firmware
cd "/usr/share/nor-update/"
if [ -n "$DEVEL" ]; then
if [ -z "$DEVEL" ]; then
SECURE_FIRMWARE_DEVEL=""
UBOOT_DEVEL=""
RESCUE_DEVEL=""
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment