From 21fb5aff39ec63ae7c69b02d26e694f07016816f Mon Sep 17 00:00:00 2001 From: Amaury Pouly Date: Tue, 27 Sep 2016 00:09:06 +0100 Subject: nwztools: rework upg scripts The exec_file allows to embed a script/executable and run it on target. It takes of unpacking, remounting contents rw and redirect output to exec.txt at the root of the drive. More generally, rework how the makefile works. Change-Id: Iec719227be96e80701ad8f5398d2d34389f4da9e --- utils/nwztools/scripts/Makefile | 71 +++++++++++++++++++++++++++++++---------- 1 file changed, 54 insertions(+), 17 deletions(-) (limited to 'utils/nwztools/scripts/Makefile') diff --git a/utils/nwztools/scripts/Makefile b/utils/nwztools/scripts/Makefile index 590fe775ba..36ccfbb496 100644 --- a/utils/nwztools/scripts/Makefile +++ b/utils/nwztools/scripts/Makefile @@ -5,36 +5,73 @@ scsitool:="../scsitools/scsitool" all: @echo "Please select an action:" - @echo "- update: uses script update.sh" @echo "- dump_rootfs: dumps the root filesystem to rootfs.tgz" - @echo "- my_update: craft an arbitrary upgrade script found in my_update.sh" - @echo "- do_fw_upgrade: send a firmware upgrade to the device in NWZ_DEV" + @echo "- do_fw_upgrade: put the device in NWZ_DEV in firmware upgrade mode" + @echo "- copy_fw_upgrade: copy firmware to a device with the right name" + @echo "- exec_file: craft an upgrade that executes a script/executable" @echo "- list_targets: produce of list of available targets" -my_update: my_update.upg -dump_rootfs: dump_rootfs.upg +ifndef UPG +want_upg: + $(info Please set UPG to the upg filename. For example:) + $(info make exec_file UPG=hello_world.upg ...) + $(error "") +else +want_upg: ; +endif + +ifndef EXEC +want_exec: + $(info Please set EXEC to the executable filename. For example:) + $(info make exec_file EXEC=hello_world.sh ...) + $(error "") +else +want_exec: ; +endif -%.upg: %.sh ifndef NWZ_TARGET - @echo "Please set NWZ_TARGET to your target. For example:" - @echo "make $@ NWZ_TARGET=nwz-e463" - @echo "Run 'make list_targets' to get a list of all targets" +want_target: + $(info Please set NWZ_TARGET to your target. For example:) + $(info make dump_rootfs NWZ_TARGET=nwz-e463) + $(info Run 'make list_targets' to get a list of all targets) + $(error "") else - @echo "Target: $(NWZ_TARGET)" - $(upgtool) -c -m $(NWZ_TARGET) $@ $^ +want_target: ; endif +ifndef NWZ_DEV +want_dev: + $(info Please set NWZ_DEV to your dev. For example:) + $(info make do_fw_upgrade NWZ_DEV=/dev/sdx) +else +want_dev: ; +endif + +ifndef NWZ_MOUNT +want_mount: + $(info Please set NWZ_MOUNT to your dev mount point. For example:) + $(info make copy_fw_upgrade NWZ_MOUNT=/media/WALKMAN ...) +else +want_mount: ; +endif + +UPGPACK=$(upgtool) -c -m $(NWZ_TARGET) $(UPG) $(1) + +exec_file: want_target want_exec want_upg + $(call UPGPACK, exec_file.sh $(EXEC)) + +dump_rootfs: want_target want_upg + $(call UPGPACK, dump_rootfs.sh) + clean: rm -rf *.upg list_targets: $(upgtool) -m ?; true # upgtool returns an error in this case, ignore it -do_fw_upgrade: -ifdef NWZ_DEV +copy_fw_upgrade: want_upg want_mount + cp $(UPG) "$(NWZ_MOUNT)/NW_WM_FW.UPG" + +do_fw_upgrade: want_dev @echo "Device: $(NWZ_DEV)" $(scsitool) $(NWZ_DEV) do_fw_upgrade -else - @echo "Please set NWZ_DEV to your dev. For example:" - @echo "make do_fw_upgrade NWZ_DEV=/dev/sdx" -endif -- cgit v1.2.3