From e7974ec2eae0f0142112028d8b7bd0af0c0c5ebb Mon Sep 17 00:00:00 2001 From: Daniel Walter Date: Wed, 31 Aug 2016 10:05:36 +0200 Subject: Add support for sysfs mocking In order to use test files, allow sysfs root to be set during compile time Signed-off-by: Daniel Walter --- ubi-utils/libubi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ubi-utils/libubi.c') diff --git a/ubi-utils/libubi.c b/ubi-utils/libubi.c index 97c0434..758d351 100644 --- a/ubi-utils/libubi.c +++ b/ubi-utils/libubi.c @@ -524,7 +524,7 @@ libubi_t libubi_open(void) if (!lib) return NULL; - lib->sysfs_ctrl = mkpath("/sys", SYSFS_CTRL); + lib->sysfs_ctrl = mkpath(SYSFS_ROOT, SYSFS_CTRL); if (!lib->sysfs_ctrl) goto out_error; @@ -532,7 +532,7 @@ libubi_t libubi_open(void) if (!lib->ctrl_dev) goto out_error; - lib->sysfs_ubi = mkpath("/sys", SYSFS_UBI); + lib->sysfs_ubi = mkpath(SYSFS_ROOT, SYSFS_UBI); if (!lib->sysfs_ubi) goto out_error; -- cgit v1.2.3