I see that multiple comma-separated parameters are allowed in RESIN_HOST_CONFIG_. For example, the device configuration UI pane shows that RESIN_HOST_CONFIG_dtparam is set to "i2c_arm=on","spi=on", which results in the following lines being generated in config.txt:
dtparam=i2c_arm=on
dtparam=spi=on
I’m trying to set GPIO pin states (https://www.raspberrypi.org/documentation/configuration/config-txt/gpio.md) via RESIN_HOST_CONFIG_gpio.
I would expect that setting RESIN_HOST_CONFIG_gpio to "2=op","3=op" would result in a config.txt containing:
gpio=2=op
gpio=3=op
However, no matter what I put into the input field in the UI, I always get that exact string reflected in the resulting config.txt, which is obviously wrong:
gpio="2=op","3=op"
Is something up with your field parser?