In LuCI, System, General Settings, I changed Timezone from the default 'UTC' to 'Los Angeles,' and this is the look of `/etc/config/system' before and after.
Before
config system
option hostname 'OpenWrt'
option timezone 'UTC'
option ttylogin '0'
option log_size '64'
option urandom_seed '0'
After
config system
option hostname 'OpenWrt'
option ttylogin '0'
option log_size '64'
option urandom_seed '0'
option cronloglevel '5'
option log_proto 'udp'
option conloglevel '8'
option timezone 'PST8PDT,M3.2.0,M11.1.0'
option zonename 'America/Los Angeles'
I can understand option zonename 'America/Los Angeles'.
But should I be worried about these three lines?
option cronloglevel '5'
option log_proto 'udp'
option conloglevel '8'
Did I do something wrong? Can a change of timezone introduce them? Should I delete them?