MJPG-Stream using /etc/config options

Im using a webcam that supports yuv format, and the camera works as expected when i'm giving the different inputs and outputs in the console like:

mjpg_streamer -i "input_uvc.so -d /dev/video0 -r 160*120 -f 30 -yuv" -o "output_http.so -w /www/webcam"

I want to be able to just run:

mjpg_streamer start

Currently when im doing so, it only shows the ouputs, as if its not even using my inputs. My output when running mjpg_streamer start currently looks like:

root@mylinkit:/etc/config# mjpg_streamer start
MJPG Streamer Version: svn rev: Unversioned directory
 o: www-folder-path...: disabled
 o: HTTP TCP port.....: 8080
 o: username:password.: disabled
 o: commands..........: enabled

My /etc/config/mjpg-streamer:

config mjpg-streamer 'core'
        option enabled '1'
        option input 'input_uvc.so'
        option output 'output_http.so'
        option device '/dev/video0'
        option resolution '640x480'
        option yuv '1'
        option quality '80'
        option fps '60'
        option led 'disable'
        option www '/www/webcam'
        option port '8080'

Let me know if you can spot my errors :thinking: