<feed xmlns='http://www.w3.org/2005/Atom'>
<title>drakx/rescue/bin/guessmounts, branch 1.64</title>
<subtitle>Mageia Installer and base platform for many utilities</subtitle>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/drakx/'/>
<entry>
<title>enable to repair encrypted LVMs/LUKS (mga#22795)</title>
<updated>2020-03-20T15:08:29+00:00</updated>
<author>
<name>Thierry Vignaud</name>
<email>thierry.vignaud@gmail.com</email>
</author>
<published>2020-03-20T15:00:34+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/drakx/commit/?id=67da4ef5c862576e046ab4d813de17628adfa6c4'/>
<id>67da4ef5c862576e046ab4d813de17628adfa6c4</id>
<content type='text'>
- ask for encryption key
- add enabled dmcrypts to the list of partitions to look at
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- ask for encryption key
- add enabled dmcrypts to the list of partitions to look at
</pre>
</div>
</content>
</entry>
<entry>
<title>explain</title>
<updated>2020-03-20T15:08:29+00:00</updated>
<author>
<name>Thierry Vignaud</name>
<email>thierry.vignaud@gmail.com</email>
</author>
<published>2020-03-20T14:57:58+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/drakx/commit/?id=e8a3f0871c8d79a8522f17cae9d6f212596cf94a'/>
<id>e8a3f0871c8d79a8522f17cae9d6f212596cf94a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>restrict ourselves to true FSes</title>
<updated>2020-03-19T15:00:14+00:00</updated>
<author>
<name>Thierry Vignaud</name>
<email>thierry.vignaud@gmail.com</email>
</author>
<published>2020-03-19T14:54:56+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/drakx/commit/?id=c79d49c972666a751b17e584c2f246af58b3c73b'/>
<id>c79d49c972666a751b17e584c2f246af58b3c73b</id>
<content type='text'>
After commit c2fcfde5b3064845d96f7cb29ddc27689ea6e710, mounting eg:
exfat strangely fails as it doesn't automatically load exfat.
(I suspect it's a bug either in exfat.ko or in util-linux)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
After commit c2fcfde5b3064845d96f7cb29ddc27689ea6e710, mounting eg:
exfat strangely fails as it doesn't automatically load exfat.
(I suspect it's a bug either in exfat.ko or in util-linux)
</pre>
</div>
</content>
</entry>
<entry>
<title>Restoring displaying found version</title>
<updated>2020-03-19T14:46:22+00:00</updated>
<author>
<name>Thierry Vignaud</name>
<email>thierry.vignaud@gmail.com</email>
</author>
<published>2020-03-19T14:27:53+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/drakx/commit/?id=37b7a9920f605e7383c0f1ce5f1763b3425e893e'/>
<id>37b7a9920f605e7383c0f1ce5f1763b3425e893e</id>
<content type='text'>
And also display a shorter distribution name (eg: "Mageia (Cauldron)"
which is still longer than just "Mageia").

history:
commit fd8bbba2f02b8bccd69e67c326fd320c0827941d wrongly introduced a
"%s" in place of "Mandriva" (w/o adding any argument)

Then commit e95388927be1f0de67413bdb5430cf0031710f54 fixed it by
replacing "%s" with the displayed release info at end.

However commit 3928e119899ee844bc0ac90e963d913782b8ae9c enables us to
have the info we want, so just use that
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And also display a shorter distribution name (eg: "Mageia (Cauldron)"
which is still longer than just "Mageia").

history:
commit fd8bbba2f02b8bccd69e67c326fd320c0827941d wrongly introduced a
"%s" in place of "Mandriva" (w/o adding any argument)

Then commit e95388927be1f0de67413bdb5430cf0031710f54 fixed it by
replacing "%s" with the displayed release info at end.

However commit 3928e119899ee844bc0ac90e963d913782b8ae9c enables us to
have the info we want, so just use that
</pre>
</div>
</content>
</entry>
<entry>
<title>just use the fs reported by blkid</title>
<updated>2020-03-19T14:45:44+00:00</updated>
<author>
<name>Thierry Vignaud</name>
<email>thierry.vignaud@gmail.com</email>
</author>
<published>2020-03-19T13:33:39+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/drakx/commit/?id=c2fcfde5b3064845d96f7cb29ddc27689ea6e710'/>
<id>c2fcfde5b3064845d96f7cb29ddc27689ea6e710</id>
<content type='text'>
Instead of doing brute force guessing.
Thus making logs easier to read…
Also slightly faster and less error-prone (even if no true FS should
havoc on another fs type).

We could have fallbacked on -&gt;{fs_type_from_magic} but that would only
help iso9660 &amp; the like which are not true FSes such as tested
previously by fs::type::true_local_fs_types()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of doing brute force guessing.
Thus making logs easier to read…
Also slightly faster and less error-prone (even if no true FS should
havoc on another fs type).

We could have fallbacked on -&gt;{fs_type_from_magic} but that would only
help iso9660 &amp; the like which are not true FSes such as tested
previously by fs::type::true_local_fs_types()
</pre>
</div>
</content>
</entry>
<entry>
<title>do not run shells uselessly</title>
<updated>2016-01-02T13:52:17+00:00</updated>
<author>
<name>Thierry Vignaud</name>
<email>thierry.vignaud@gmail.com</email>
</author>
<published>2015-04-30T14:23:53+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/drakx/commit/?id=70e92f4e81a2f48c875a7d5ffa1e374ab10ac41a'/>
<id>70e92f4e81a2f48c875a7d5ffa1e374ab10ac41a</id>
<content type='text'>
also prevent arguments to be split on spaces &amp; the like
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
also prevent arguments to be split on spaces &amp; the like
</pre>
</div>
</content>
</entry>
<entry>
<title>guessmount: mount {/dev,/run,/sys} too (mga#10865)</title>
<updated>2015-04-30T19:26:54+00:00</updated>
<author>
<name>Thierry Vignaud</name>
<email>thierry.vignaud@gmail.com</email>
</author>
<published>2015-04-30T14:20:19+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/drakx/commit/?id=659ab26a581ce73eb5ed83dfc34e398ab9d81dcb'/>
<id>659ab26a581ce73eb5ed83dfc34e398ab9d81dcb</id>
<content type='text'>
those are mounted by udev not fstab those days
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
those are mounted by udev not fstab those days
</pre>
</div>
</content>
</entry>
<entry>
<title>rescue: Move files around and introduce proper dep tracking.</title>
<updated>2013-12-07T18:32:06+00:00</updated>
<author>
<name>Colin Guthrie</name>
<email>colin@mageia.org</email>
</author>
<published>2013-12-02T23:40:22+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/drakx/commit/?id=e7aedc3aa7e08f3337c86085c6da10ca83445024'/>
<id>e7aedc3aa7e08f3337c86085c6da10ca83445024</id>
<content type='text'>
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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
</feed>
