search for: file_block

Displaying 7 results from an estimated 7 matches for "file_block".

2014 Dec 24
0
[PATCH 0/8] extlinux: support unmounted ext2/3/4 filesystem
On 12/24/2014 12:16 AM, Robert Yang wrote: > Hello syslinux, > > Merry Christmas! These patches will make extlinux work with umounted > ext2/3/4 filesystem, for example: > > $ extlinux -i /dev/sdXN > or > $ extlinux -i file_block > > Also it can work with something like: > $ extlinux /dev/sdXN --reset-adv > or > $ extlinux file_block --reset-adv > > We don't use a new option (I planed to use "-d" but it is already in > use), it will check whether the target is a directory or device a...
2014 Dec 24
0
[PATCH 0/8] extlinux: support unmounted ext2/3/4 filesystem
> Hello syslinux, > > Merry Christmas! These patches will make extlinux work with umounted > ext2/3/4 filesystem, for example: > > $ extlinux -i /dev/sdXN > or > $ extlinux -i file_block > > Also it can work with something like: > $ extlinux /dev/sdXN --reset-adv > or > $ extlinux file_block --reset-adv > Thank you. The 'extlinux' command supports several (mounted) filesystems, not only extN. This series of patches seems to be relevant for extN only...
2014 Dec 25
2
[PATCH 0/8] extlinux: support unmounted ext2/3/4 filesystem
...Peter Anvin wrote: > On 12/24/2014 12:16 AM, Robert Yang wrote: >> Hello syslinux, >> >> Merry Christmas! These patches will make extlinux work with umounted >> ext2/3/4 filesystem, for example: >> >> $ extlinux -i /dev/sdXN >> or >> $ extlinux -i file_block >> >> Also it can work with something like: >> $ extlinux /dev/sdXN --reset-adv >> or >> $ extlinux file_block --reset-adv >> >> We don't use a new option (I planed to use "-d" but it is already in >> use), it will check whether the tar...
2014 Dec 24
14
[PATCH 0/8] extlinux: support unmounted ext2/3/4 filesystem
Hello syslinux, Merry Christmas! These patches will make extlinux work with umounted ext2/3/4 filesystem, for example: $ extlinux -i /dev/sdXN or $ extlinux -i file_block Also it can work with something like: $ extlinux /dev/sdXN --reset-adv or $ extlinux file_block --reset-adv We don't use a new option (I planed to use "-d" but it is already in use), it will check whether the target is a directory or device and decide what to do, it would stop and...
2014 Dec 25
0
[PATCH 0/8] extlinux: support unmounted ext2/3/4 filesystem
...2:16 AM, Robert Yang wrote: > >> Hello syslinux, > >> > >> Merry Christmas! These patches will make extlinux work with umounted > >> ext2/3/4 filesystem, for example: > >> > >> $ extlinux -i /dev/sdXN > >> or > >> $ extlinux -i file_block > >> > >> Also it can work with something like: > >> $ extlinux /dev/sdXN --reset-adv > >> or > >> $ extlinux file_block --reset-adv > >> > >> We don't use a new option (I planed to use "-d" but it is already in > >...
2014 Dec 25
2
[PATCH 0/8] extlinux: support unmounted ext2/3/4 filesystem
...te: >>>> Hello syslinux, >>>> >>>> Merry Christmas! These patches will make extlinux work with umounted >>>> ext2/3/4 filesystem, for example: >>>> >>>> $ extlinux -i /dev/sdXN >>>> or >>>> $ extlinux -i file_block >>>> >>>> Also it can work with something like: >>>> $ extlinux /dev/sdXN --reset-adv >>>> or >>>> $ extlinux file_block --reset-adv >>>> >>>> We don't use a new option (I planed to use "-d" but it is...
2014 Dec 24
0
[PATCH 1/8] extlinux/main.c: support unmounted ext2/3/4 filesystem
Add install_file_to_device() to support unmounted ext2, ext3 and ext4 filesystem. Usage: $ extlinux -i /dev/sdXN or $ extlinux -i file_block We don't need any new options, it will check whether the target is a directory or device and decide what to do, it would stop and error if the device is mounted. More info: * It will use libext2fs to read and write the file. * It will be used when the target is a extX device or file block, an...