-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add BTRFS #232
Add BTRFS #232
Conversation
get_opt("mkfsbtrfs"), | ||
label ? "-L" : "", | ||
label ? label : "", | ||
label ? "-r" : "", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks wrong. -r
is the option for the rootfs and should not depend on the label, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Im go look for this.
} | ||
|
||
static cfg_opt_t btrfs_opts[] = { | ||
CFG_STR("label", NULL, CFGF_NONE), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add an extraargs
option like in all other filesystem images.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok
Signed-off-by: liberodark <[email protected]>
Fix : #158