Lines Matching refs:bcb
34 'bcb'. Shell command overview
37 The ``bcb`` command provides a CLI to facilitate the development of the
40 => bcb
41 bcb - Load/set/clear/test/dump/store Android BCB fields
44 bcb load <dev> <part> - load BCB from mmc <dev>:<part>
45 bcb set <field> <val> - set BCB <field> to <val>
46 bcb clear [<field>] - clear BCB <field> or all fields
47 bcb test <field> <op> <val> - test BCB <field> against <val>
48 bcb dump <field> - dump BCB <field>
49 bcb store - store BCB back to mmc
55 <op> - the binary operator used in 'bcb test':
58 <val> - string/text provided as input to bcb {set,test}
60 during 'bcb set' and used as separator by upper layers
63 'bcb'. Example of getting reboot reason
68 if bcb load 1 misc; then
70 if bcb test command = bootonce-bootloader; then
71 bcb clear command; bcb store;
74 else if bcb test command = boot-recovery; then
75 bcb clear command; bcb store;