20181117-alt1

- probing.c: added support for SD-cards when boot in LiveCD-mode
This commit is contained in:
Leonid Krivoshein 2018-11-17 22:53:22 +03:00
parent a352e62521
commit b4917948fe
2 changed files with 5 additions and 2 deletions

View File

@ -164,7 +164,7 @@ static void find_media(void)
if ((f = fopen(path, "r")) != NULL) {
int type = SCSI_TYPE_DISK;
if (fgets(buf, sizeof(buf), f) > 0) {
if (strncmp(buf, "MMC", 3) == 0)
if (!strncmp(buf, "MMC", 3) || !strncmp(buf, "SD", 2))
tmp[count].type = DISK;
else if (sscanf(buf, "%d", &type) > 0) {
if (type == SCSI_TYPE_DISK) tmp[count].type = DISK;

View File

@ -3,7 +3,7 @@
%def_with splash
Name: propagator
Version: 20180822
Version: 20181117
Release: alt1
Summary: 'Early userspace' set of binaries
@ -39,6 +39,9 @@ including init and various helpers for hw probing and bootstrapping.
%_sbindir/propagator
%changelog
* Sat Nov 17 2018 Leonid Krivoshein <klark@altlinux.org> 20181117-alt1
- probing.c: added support for SD-cards when boot in LiveCD-mode
* Wed Aug 22 2018 Evgeny Sinelnikov <sin@altlinux.org> 20180822-alt1
- add support cifs install method
- replace HTTP request version from 1.0 to 1.1