summaryrefslogtreecommitdiffstats
path: root/mdk-stage1
Commit message (Collapse)AuthorAgeFilesLines
* 2.402.40Thomas Backlund2019-06-172-1/+3
|
* recognize 8821ce (mga#24605)Thierry Vignaud2019-06-111-0/+2
|
* 2.392.39Thomas Backlund2019-05-112-1/+3
|
* add AMD PCIe MP2 I2C detectionThomas Backlund2019-05-041-0/+2
|
* 2.38Thierry Vignaud2019-05-032-1/+3
|
* adapt to kernel 5.1Thierry Vignaud2019-05-031-0/+2
|
* 2.37Thierry Vignaud2019-03-082-1/+3
|
* sync with kernel 5.0Thierry Vignaud2019-03-081-0/+2
| | | | Note that we did NOT sync with 4.20
* 2.362.36Martin Whitaker2019-01-062-1/+3
|
* Suppress mount error messages when probing for media (mga#24142)Martin Whitaker2019-01-062-1/+2
| | | | | Probably caused by the switch to using the standalone mount command, the tail end of a mount error message was left showing in the GUI.
* better gcc8 workaroundsThierry Vignaud2018-12-013-5/+7
|
* 2.35Thierry Vignaud2018-12-012-1/+3
|
* gcc8 workaroundsThierry Vignaud2018-12-012-1/+2
| | | | | | | | | | | | Before previous commit, compiling with gcc8 would have need: -Wno-error=format-overflow -Wno-error=format-security But now, only -Wno-error=format-truncation is needed. rationale: gcc bogusly complains about snprintf() being unsafe. See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77721 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78969
* fix compiling with gcc8Thierry Vignaud2018-12-014-5/+7
|
* 2.34Thierry Vignaud2018-11-302-1/+3
|
* drop our own old unmaintained forked nfs codeThierry Vignaud2018-11-305-1329/+1
| | | | | we now got support for all NFS features, including NFSv4 & co server likely needs to be configured with 'insecure'
* switch to using regular mount for nfsThierry Vignaud2018-11-303-8/+1
|
* simplify now that we use standalone mountThierry Vignaud2018-11-302-10/+3
| | | | | | Let mount uses the blkid library for guessing the filesystem type That's quite a lot better than manually trying a long list of potential fses
* actually call regular mountThierry Vignaud2018-11-302-3/+14
| | | | now that we've it in stage1 anyway (since using dracut)
* 2.332.33Thierry Vignaud2018-11-302-1/+3
|
* add support for disk-iso auto-installThierry Vignaud2018-11-302-5/+23
| | | | | | eg: "method:disk,disk:vdb,partition:vdb1,dir:/Mageia/boot.iso" in the future, we might want to merge back !automatic & automatic paths
* check for builtin modules in /sys/fs tooThierry Vignaud2018-11-292-0/+7
| | | | | | | | eg: ext4 is builtin but appears in /sys/fs, not in /sys/modules Alternatively we could have looked at /proc/filesytem contents like stage2 Thus we've better readable stage1 logs
* advertize "ext4" rather than "ext2"Thierry Vignaud2018-11-295-4/+6
|
* 2.322.32Martin Whitaker2018-11-172-1/+3
|
* installer stage 1 & 2: don't include vboxvideo kernel module (mga#23467)Martin Whitaker2018-11-171-0/+2
|
* 2.31Thierry Vignaud2018-11-152-1/+3
|
* sync with kernel 4.1[89]Thierry Vignaud2018-11-151-0/+2
|
* 2.302.30Thomas Backlund2018-07-252-1/+3
|
* add missing smartpqi driver (mga#23305)Thomas Backlund2018-07-251-0/+2
|
* 2.292.29Thomas Backlund2018-07-022-1/+2
|
* add missing Mellanox drivers (mga#23263)Thomas Backlund2018-07-021-0/+2
|
* 2.28Thierry Vignaud2018-06-222-1/+2
|
* sync with kernel 4.1[5-7]Thierry Vignaud2018-06-221-0/+2
|
* 2.27Thierry Vignaud2018-02-102-1/+2
|
* further sync with kernel 4.14Thierry Vignaud2018-02-101-0/+2
|
* 2.262.26Thomas Backlund2018-01-192-1/+2
|
* sync with kernel 4.14Thomas Backlund2018-01-191-0/+2
|
* 2.25Thierry Vignaud2017-09-162-1/+2
|
* fix build with gcc7Thierry Vignaud2017-09-164-6/+8
|
* 2.24Thierry Vignaud2017-06-222-1/+2
|
* list 8812au (mga#21043)Thierry Vignaud2017-06-101-0/+2
|
* 2.23Thierry Vignaud2017-02-252-1/+2
|
* sync with kernel-4.8Thierry Vignaud2017-02-251-0/+2
|
* 2.22Thierry Vignaud2017-02-252-1/+2
|
* sync with kernel-4.9Thierry Vignaud2016-12-311-0/+2
| | | | looks like nobobdy did 4.8...
* 2.21Thierry Vignaud2016-07-052-1/+2
|
* sync with kernel-4.6Thierry Vignaud2016-07-051-0/+2
|
* 2.20Thierry Vignaud2016-07-012-1/+2
|
* stop tracking network interface descriptionsThierry Vignaud2016-07-013-43/+0
| | | | this is now useless after previous commit
* fix description of network interfaces (mga#15638)Thierry Vignaud2016-07-012-5/+23
| | | | | | | | | | | | It got broken when switching stage1 to udev: previously we were manually loading the driver and thus we knew which driver corresponded to the newly created intf. Since mga4, the driver has already been loaded by udev and thus we fail to associate the intf with the right driver and thus we failed to get the driver description. => let's use the ethtool IOCTL like the stage2 does