| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
|
|
|
| |
it was wrongly added in commit 7cd51d36c05a66555b07a7fa850b21686ded2e1a
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
The issue is that lsparts is relying on fs::proc_partitions::read_raw(),
which reads /proc/partition which reports size of devices in 1kb blocks
instead of expected 512b sectors elsewhere...
The size is adjusted by *2 in read() but lsparts only used the lower
level interface.
This bug was introduced in commit 20e553d8f0ead3d5de1fb61d1aa255dd35549cf2
|
|
|
|
| |
(need latest perl_checker)
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
also prevent arguments to be split on spaces & the like
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
those are mounted by udev not fstab those days
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
thus fixing grub2 rescue (mga#13408, mga#13901)
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
since commit c4634f60b5c6d67eedfedc02166499884e4d6625
|
| |
|
| |
|
|
|
|
|
| |
Particularly the floppy module fails quite regularly. That said,
do we even need floppy support these days?
|
|
|
|
|
|
|
|
|
| |
Technically, because we don't actually switchroot into this filesystem
we don't need some of the directories and symlinks (as they are already
present in the initrd).
But with a long term view to making this a "real" filesystem that we DO
switchroot into, it makes sense to try and keep things vaguely valid.
|
|
|
|
|
|
|
|
| |
This moves any perl files into bin and sbin folders which will be directly installed
in /usr/bin and /usr/sbin. This is done such that the extract modes in list.xml still
work and the files end up in the right places.
All other files have been moved into the tree folder in their final destination.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This allows us to actually mount and run the system inside a container for
more advanced debugging.
I've successfully booted my systemd, logged in, had a fiddle and then
powered it off again. There are some delays and it's requried to umount
the /mnt/proc which seems to get automatically mounted before running
nspawn. Also audit support has to be turned off in the kernel too to
allow a full boot to work properly (otherwise the authentication in
the container doesn't work. This is a known problem in the kernel and
will be fixed eventually.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This commit converts the rescue system to systemd rather than the legacy
sysvinit.
Besides being faster, one primary advantage of running systemd here is
that we can "boot" the system we're inspecting via systemd-nspawn
to properly test it.
Note: Bits that don't work:
* nspawn
* old dracut initqueue udev rules in /etc/ are not cleaned out (drop in
support error?)
* the gui may loop differently now
|
|
|
|
|
|
| |
We can easily avoid post processing the tree simply by moving the tree around
and ensuring we set it up correctly (with the compat symlinks) early in the
process.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
The main change here is not remounting a fresh /run. Dracut does this
for us and we actually need to keep this one as the initial udev
database (when udev is started by dracut) is stored here and thus
mounting an empty fs could see us lose some metadata.
We no longer touch the /bin, /sbin or /lib[64] symlinks as these are
already relative symlinks into /usr and simply bind mounting /usr is
enough.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
This should leave us with a working tarballs in all cases.
The perl-install/Makefile has been adjusted to do the same as the previous
svn rules (regarding copying Makefiles and running a perl tidyup routine)
The perl-install/install/Makefile has been adjusted to svn export the
rpm srate info from meta-task package subversion. This requires an active
network connection, but should result in the same tarball as before
until this is factored out
|
| |
|