summaryrefslogtreecommitdiff
path: root/recipes-core/fs-init
AgeCommit message (Collapse)Author
2021-08-14layer: convert to new override syntaxMax Krummenacher
This is the result of automated script (0.9.3) conversion: +# meta-toradex-distro +vars = vars + ["preempt-rt","tdx","upstream"] +# meta-toradex-* machines +vars = vars + ["apalis-","colibri-","verdin-","tegra124"] +# meta-freescale +vars = vars + ["imx","mx6","mx7","mx8","use-mainline-bsp","use-nxp-bsp"] ../openembedded-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
2020-06-17fs-init: some cleaning upMing Liu
- Drop deprecated NATIVE_SYSTEMD_SUPPORT. - Drop do_compile, base_do_compile would be good enough. Signed-off-by: Ming Liu <ming.liu@toradex.com> (cherry picked from commit d7d020fffa5b8101917b5f34d603e21663eaba8c)
2017-04-07meta-toradex-bsp: clean-up whitespace useMax Krummenacher
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
2017-02-08fs-init: do not reload daemon configurationStefan Agner
In case the resizefs.sh script ends quite fast, the system might still be in boot sequence. Removing a systemd service can be problematic in that case: It seems that systemd looses the state of .device units, and some services depend on such units (namely serial consoles such as serial-getty@ttymxc0.service). The following sequence shows this problem: Jan 12 00:16:45 apalis-imx6 sh[399]: Removed /etc/systemd/system/multi-user.target.wants/resizefs.service. Jan 12 00:16:45 apalis-imx6 systemd[1]: Reloading. Jan 12 00:16:45 apalis-imx6 root[704]: resizing mmcblk0p2 finished, new size is 3755M ... Jan 19 00:04:08 apalis-imx6 systemd[1]: dev-ttymxc0.device: Job dev-ttymxc0.device/start timed out. Jan 19 00:04:08 apalis-imx6 systemd[1]: Timed out waiting for device dev-ttymxc0.device. Jan 19 00:04:08 apalis-imx6 systemd[1]: Dependency failed for Serial Getty on ttymxc0. (the time has been updated between this to events, but that does not influence the issue) Using --no-reload avoids the "Reloading." message above and seems to not cause such issues anymore. Signed-off-by: Stefan Agner <stefan.agner@toradex.com> Acked-by: Max Krummenacher <max.krummenacher@toradex.com>
2017-02-08fs-init: remove duplicate resize scriptStefan Agner
The script used for all machines (e.g. T30) and the mx6 specific script are the very same scripts. Drop the mx6 specific script, with that the recipe will use the general scripts for all machines. Signed-off-by: Stefan Agner <stefan.agner@toradex.com> Acked-by: Max Krummenacher <max.krummenacher@toradex.com>
2015-10-28fs-init: start resizefs.service in multi-user.targetMax Krummenacher
Non graphical images will never execute graphical.target services.
2015-10-28fs-init.bb: follow e2fsprogs package splitMax Krummenacher
With fido e2fsprogs did split out the package e2fsprogs-resize2fs. RRECOMMEND it so that it gets picked up during rootfs creation.
2015-05-12licenses: fix license string to known values or formatMax Krummenacher
2015-05-12recipes: replace short DESCRIPTION with SUMMARYMax Krummenacher
The SUMMARY variable gives a short description of the package (<72 chars). A missing DESCRIPTION is automatically set to the content of SUMMARY.
2014-11-13apalis/colibri_t30: fix resizefsMarcel Ziswiler
2014-04-01resizefs.sh: add iMX6 specificsMax Krummenacher
2013-10-07resizefs.sh: start from current fs size, not from a constMax Krummenacher
2013-09-22systemd: adapt to new systemd handlingMax Krummenacher
with the move from meta-openembedded to oe-core some things have changed, e.g. the config files have to explicitly installed
2013-06-26fs-init: add recipe to extend rootfs partition on eMMCMax Krummenacher
- on Colbri/Apalis T30 the rootfs is downloaded in a minimum size. On first boot this filesystem is resized to fill its full partion. This slows down IO responsivness during the first 5 minutes.