Skip to content
Snippets Groups Projects
  1. Oct 31, 2016
    • Petr Štetiar's avatar
      base-files: sysfixtime: Keep RTC time in UTC timezone · 9e8e8b72
      Petr Štetiar authored
      
      We need to tell hwclock with -u commandline option, that we would like
      to keep our RTC clock in UTC timezone. Linux kernel expects RTC in UTC
      timezone anyway.
      
      In current state of things, we don't tell hwclock to load/store time
      from/to RTC in UTC timezone so it uses the timezone from the system
      time. If it's set to different timezone then UTC, sysfixtime is going to
      screw the time in RTC.
      
      I've following in the setup script:
      
        uci set system.@system[0].timezone='CET-1CEST,M3.5.0,M10.5.0/3'
        uci set system.@system[0].zonename='Europe/Prague'
      
      I've this RTC setup (rtc1 is RTC on i.MX6 SoC, rtc0 is battery backed RTC mcp7941x):
      
        rtc-ds1307 3-006f: rtc core: registered mcp7941x as rtc0
        snvs_rtc 20cc000.snvs:snvs-rtc-lp: rtc core: registered 20cc000.snvs:snvs-r as rtc1
      
      Then we can experience following (current time is 10:15am):
      
      	$ date
      	Fri Oct 21 10:15:07 CEST 2016
      
      	$ hwclock -r -f /dev/rtc0
      	Fri Oct 21 08:14:46 2016  0.000000 seconds
      
      	$ hwclock -u -r -f /dev/rtc0
      	Fri Oct 21 10:14:46 2016  0.000000 seconds
      
      And after current broken sysfixtime:
      
      	$ /etc/init.d/sysfixtime stop
      
      	$ date
      	Fri Oct 21 10:15:25 CEST 2016
      
      	$ hwclock -r -f /dev/rtc0
      	Fri Oct 21 10:15:31 2016  0.000000 seconds
      
      Now we've time in our battery backed RTC in CEST timezone instead of
      UTC.  Then once again, but with this patch applied to sysfixtime, where
      hwclock is using correctly the -u parameter:
      
      	$ /etc/init.d/sysfixtime stop
      
      	$ date
      	Fri Oct 21 10:15:53 CEST 2016
      
      	$ hwclock -r -f /dev/rtc0
      	Fri Oct 21 08:15:55 2016  0.000000 seconds
      
      Signed-off-by: default avatarPetr Štetiar <ynezz@true.cz>
      Acked-by: default avatarJo-Philipp Wich <jo@mein.io>
      9e8e8b72
  2. Oct 27, 2016
    • Chris Blake's avatar
      base-files: Ensure reset only works if an overlay exists · b745bfa6
      Chris Blake authored
      
      Currently the reset script will try to run jffs2reset on boards that are
      running a rw rootfs, such as ext4. This will cause jffs2reset to fail
      and the board to never reboot while the LED blinks until a manual
      reboot.
      
      This commit does two different things:
      1. Disables reset on boards that do not have an overlay mount
      2. Disables the Blinking LED after 5 seconds if the board does not
      support reset
      
      Signed-off-by: default avatarChris Blake <chrisrblake93@gmail.com>
      b745bfa6
  3. Oct 26, 2016
  4. Oct 22, 2016
    • Rafał Miłecki's avatar
      base-files: add ucidef_set_led_usbport for full usbport support · 2187f57d
      Rafał Miłecki authored
      
      This helper allows using usbport trigger directly. It requires usbport
      compatible syntax and supports specifying multiple USB ports, e.g.:
      ucidef_set_led_usbport "usb" "USB" "devicename:colour:function" "usb1-port1" "usb2-port1"
      
      This adds a proper object to the board.json, e.g.
      "usb": {
      	"name": "USB",
      	"type": "usbport",
      	"sysfs": "devicename:colour:function",
      	"ports": [
      		"usb1-port1",
      		"usb2-port1"
      	]
      }
      and supports translating it into uci section.
      
      Signed-off-by: default avatarRafał Miłecki <rafal@milecki.pl>
      2187f57d
  5. Oct 19, 2016
  6. Oct 18, 2016
  7. Oct 05, 2016
  8. Oct 04, 2016
  9. Sep 26, 2016
  10. Sep 24, 2016
  11. Sep 19, 2016
  12. Sep 16, 2016
  13. Sep 05, 2016
  14. Aug 14, 2016
  15. Aug 13, 2016
  16. Aug 10, 2016
  17. Aug 04, 2016
  18. Aug 01, 2016
  19. Jul 24, 2016
  20. Jul 26, 2016
  21. Jun 30, 2016
    • Etienne CHAMPETIER's avatar
      base-files: seed /dev/urandom · 3946a552
      Etienne CHAMPETIER authored
      
      This commit:
      1) seed /dev/urandom with the saved seeds as early as possible
         (see /lib/preinit/81_urandom_seed)
      2) save a seed at /etc/urandom.seed if it doesn't exists
      3) save a new seed each boot at "system.@system[0].urandom_seed"
         (see /etc/init.d/urandom_seed)
      
      We use getrandom() so we are sure /dev/urandom pool is initialized
      
      Seed size is 512 bytes (ie /proc/sys/kernel/random/poolsize / 8)
      it's the same size as in ubuntu 14.04 and all systemd systems
      
      Seeding /dev/urandom doesn't change entropy estimation, so we still have
      "random: ubus urandom read with 4 bits of entropy available"
      messages in the logs, but we can now ignore them if
      after "urandom-seed: Seeding with ..." message
      
      Saving a new seed on each boot is disabled by default to avoid too much
      writes without user consent
      
      v2: log preinit messages to /dev/kmsg
      v3: use non generic function name for logging, as /lib/preinit/ files
          are all sourced together in /etc/preinit
      v4: after a lot of discussion on the ML, use a uci config param
      v5: config param is now the path of the seed
      
      Signed-off-by: default avatarEtienne CHAMPETIER <champetier.etienne@gmail.com>
      Acked-by: default avatarJo-Philipp Wich <jo@mein.io>
      3946a552
  22. Jun 28, 2016
  23. Jun 24, 2016
  24. Jun 17, 2016
  25. Jun 07, 2016
  26. Jun 08, 2016
  27. Jun 07, 2016
    • Jo-Philipp Wich's avatar
      base-files: drop /etc/config/system · 924302ba
      Jo-Philipp Wich authored
      
      The board_detect framework is now able to create the entire system config from
      scratch so we can finally drop the copy shipped by base-files.
      
      Signed-off-by: default avatarJo-Philipp Wich <jo@mein.io>
      924302ba
    • Jo-Philipp Wich's avatar
      base-files: rework config generation logic · b98f78b1
      Jo-Philipp Wich authored
      
      Now that config_generate is able to generate the entire /etc/config/system
      from scratch we can apply the same logic as used for /etc/config/network;
      when the configuration file exists already then do not do anything, else
      generate it from the values provided by /etc/board.json .
      
      In order to facilitate that move the file existance checking inside
      /bin/config_generate and call it unconditionally from /bin/board_detect.
      
      Signed-off-by: default avatarJo-Philipp Wich <jo@mein.io>
      b98f78b1
Loading