/
githubmirror
/
efivar
Обзор
Документация
Войти
/
githubmirror
/
efivar
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
38
src/linux-soc-root.c
55 строк
2 KB
Peter Jones
SPDX-ify all the license text in source files.
03 фев 2020, 21:37
03 фев 2020, 21:37
ce42f1d
Код
Авторство
О чём код?
// SPDX-License-Identifier: LGPL-2.1-or-later /* * libefiboot - library for the manipulation of EFI boot variables * Copyright 2012-2019 Red Hat, Inc. */ #include "fix_coverity.h" #include <errno.h> #include <fcntl.h> #include <inttypes.h> #include <stdint.h> #include <unistd.h> #include "efiboot.h" /* * support for soc platforms * * various devices /sys/dev/block/$major:$minor start with: * maj:min -> ../../devices/platform/soc/$DEVICETREE_NODE/$BLOCKDEV_STUFF/block/$DISK/$PART * i.e.: soc/1a400000.sata/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1 * ^ dt node ^ blockdev stuff ^ disk * I don't *think* the devicetree nodes stack. */ static ssize_t parse_soc_root(struct device *dev UNUSED, const char *path, const char *root UNUSED) { const char *current = path; int rc; int pos0 = -1, pos1 = -1; debug("entry"); rc = sscanf(current, "../../devices/%nplatform/soc/%*[^/]/%n", &pos0, &pos1); if (rc != 0 || pos0 == -1 || pos1 == -1) return 0; debug("current:'%s' rc:%d pos0:%d pos1:%d", current, rc, pos0, pos1); dbgmk(" ", pos0, pos1); current += pos1; debug("current:'%s' sz:%zd\n", current, current - path); return current - path; } enum interface_type soc_root_iftypes[] = { soc_root, unknown }; struct dev_probe HIDDEN soc_root_parser = { .name = "soc_root", .iftypes = soc_root_iftypes, .flags = DEV_ABBREV_ONLY|DEV_PROVIDES_ROOT, .parse = parse_soc_root, }; // vim:fenc=utf-8:tw=75:noet