-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: liberodark <[email protected]>
- Loading branch information
1 parent
b4e4b18
commit 2c985fe
Showing
8 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* Copyright (c) 2022 Tomas Mudrunka <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 | ||
* as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <confuse.h> | ||
#include <stdio.h> | ||
#include <string.h> | ||
#include <stdlib.h> | ||
#include <errno.h> | ||
|
||
#include "genimage.h" | ||
|
||
static int btrfs_generate(struct image *image) | ||
{ | ||
int ret; | ||
|
||
char *label = cfg_getstr(image->imagesec, "label"); | ||
|
||
ret = prepare_image(image, image->size); | ||
if(ret) | ||
return ret; | ||
|
||
|
||
ret = systemp(image, "%s %s %s %s '%s' '%s'", | ||
get_opt("mkfsbtrfs"), | ||
label ? "-L" : "", | ||
label ? label : "", | ||
label ? "-r" : "", | ||
mountpath(image), /* source dir */ | ||
imageoutfile(image)); /* destination file */ | ||
|
||
if(ret || image->empty) | ||
return ret; | ||
|
||
|
||
return ret; | ||
} | ||
|
||
static cfg_opt_t btrfs_opts[] = { | ||
CFG_STR("label", NULL, CFGF_NONE), | ||
CFG_END() | ||
}; | ||
|
||
struct image_handler btrfs_handler = { | ||
.type = "btrfs", | ||
.generate = btrfs_generate, | ||
.opts = btrfs_opts, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
image test.btrfs { | ||
btrfs { | ||
label = "btrfstest" | ||
} | ||
size = 64M | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters