Lines Matching +full:booting +full:- +full:without +full:- +full:of

2 Early creation of mapped devices
5 It is possible to configure a device-mapper device to act as the root device for
11 The second is to create one or more device-mappers using the module parameter
12 "dm-mod.create=" through the kernel boot command line argument.
14 The format is specified as a string of data separated by commas and optionally
15 semi-colons, where:
17 - a comma is used to separate fields like name, uuid, flags and table
19 - a semi-colon is used to separate devices.
23 …dm-mod.create=<name>,<uuid>,<minor>,<flags>,<table>[,<table>+][;<name>,<uuid>,<minor>,<flags>,<tab…
28 <uuid> ::= xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx | ""
35 `--concise` argument.
41 activation of certain DM targets without first using userspace tools to check
42 the validity of associated metadata.
51 `log-writes` constrained, userspace should verify metadata device
55 `snapshot-origin` allowed
56 `snapshot-merge` constrained, userspace should verify src/dst device
60 `thin-pool` constrained, requires dm target message from userspace
70 An example of booting to a linear array made up of user-mode linux block
73 dm-mod.create="lroot,,,rw, 0 4096 linear 98:16 0, 4096 4096 linear 98:32 0" root=/dev/dm-0
75 This will boot to a rw dm-linear target of 8192 sectors split across two block
79 An example of multiple device-mappers, with the dm-mod.create="..." contents
82 dm-linear,,1,rw,
85 dm-verity,,3,ro,
94 dm-crypt,,8,ro,
95 0 1048576 crypt aes-xts-plain64
101 dm-delay,,4,ro,0 409600 delay /dev/sda1 0 500
105 dm-linear,,,rw,
111 "snapshot-origin"::
113 dm-snap-orig,,4,ro,0 409600 snapshot-origin 8:2
117 dm-striped,,4,ro,0 1638400 striped 4 4096
122 dm-verity,,4,ro,
127 For setups using device-mapper on top of asynchronously probed block
128 devices (MMC, USB, ..), it may be necessary to tell dm-init to
130 device-mapper tables. This can be done with the "dm-mod.waitfor="
131 module parameter, which takes a list of devices to wait for::
133 dm-mod.waitfor=<device1>[,..,<deviceN>]