Marcin Wielgosz
Marcin Wielgosz
It actually starts segfaulting from release 36080. I was bisecting it from 35000(default on AWS market) til latest in order to find last stable release. 35000 ok 35800 ok 36000...
It seems that upgrade process from 36070 to 36080 removed /dev/root and more recent binaries cannot cope with it. I'm using AWS provided image so no extra /boot partition is...
Below you can find temporary solution which creates /dev/root at boot: cat /etc/systemd/system/cbm_fix.service: `[Unit] Description=cbm_fix After=local-fs.target [Service] ExecStart=/usr/sbin/cbm_fix RemainAfterExit=yes Type=oneshot User=root Group=root StandardOutput=syslog StandardError=syslog SyslogIdentifier=cbm_fix [Install] WantedBy=multi-user.target ` /usr/sbin/cbm_fix: `#!/bin/bash...