update-kernel extra firmware doesn't split string
I'm writing my own mkimage.sh plugin, and I need to set some extra firmware, but the extra firmware support in update-kernel does not properly split the string.
The problem is the quotes around $modloopfw
; by changing it to for _xfw in $modloopfw; do
the string will be properly split.