On Thu, 30 Mar 2023, 10:57:49 +0200, Carlos E. R. wrote:
On 2023-03-30 10:55, Manfred Hollstein wrote:
Hi Carlos,
On Thu, 30 Mar 2023, 10:47:09 +0200, Carlos E. R. wrote:
On 2023-03-30 09:49, Antonio Feijoo via openSUSE Factory wrote:
Hi,
As you might know, for quite some time `mkinitrd` is just an incomplete wrapper that internally calls `dracut` and `update-bootloader` (unless it's called with `-B`).
Finally, all known packages that required it in their spec file or were found to be using it have been fixed. Hence, it's time to move on. The next `dracut` update in Factory will not provide the `dracut-mkinitrd-deprecated` package. This is planned to be submitted in mid-April, before 2023-04-14, so if you still use `mkinitrd` in any of your packages or custom scripts, please replace it with `dracut` (plus `update-bootloader` if necessary).
Please advise us users what exact command concoction to use instead. Me, and many others, are used to just run "mkinitrd" for many years.
you see the various calls in /var/log/YaST2/mkinitrd.log, just use
# grep /usr/bin/dracut /var/log/YaST2/mkinitrd.log
Laicolasse:~ # grep /usr/bin/dracut /var/log/YaST2/mkinitrd.log grep: /var/log/YaST2/mkinitrd.log: No such file or directory Laicolasse:~ #
Then you haven't actually invoked mkinitrd at all... # grep log /usr/sbin/mkinitrd logfile=/var/log/YaST2/mkinitrd.log $cmd " -L Disable logging." -L) logfile=;; [[ $logfile ]] && dracut_args="${dracut_args} --logfile $logfile" You should just run "sudo mkinitrd", then you have it ;) Cheers. l8er manfred