Ok so I'm trying to capture the UBI device number to pass it onto mount a factory data partition containing my source mac binary.
I have modified a pervious device specific script on the same platform, so it does not assume anything and make it more universal.
see here for my commit:
Qualcommax: IPQ807x: Add support for TP-Link Deco X80-5G by professor-jonny · Pull Request #16329 · openwrt/openwrt
I'm just not sure on the factory function find_mtd_index
in the standard functions in /lib/functions.sh and, I could not figure out how to debug preinit to get stdout etc...
Is there a help file or something that explains what these standard functions do ? or anyone able to offer advice ?
As I don't know if it will parse on the correct string ubi$ubi_num
into the mount command
I'm not really clued up enough to understand how to decipher and understand the standard functions work as there is no notes in the code or notes on the wiki as far as I can tell.
I could use awk to capture the output of the ubiattatch command to get the ubi device number something like below I just do not know if there is a standard function to mount a ubi formatted device:
local ubi_num=$(ubiattach --dev-path="$mtd_path" | \
awk -F',' '/UBI device number [0-9]{1,}/{print $1}' | \
awk '{print $4}')
The other thing I could do is parse on the device number in the case command using --devn=$ubi_device_number
in the ubiattach command by specifying it in the string but this has the potential for failure as one could accidentally type in a ubi device number that is in use.