xref: /aosp_15_r20/external/e2fsprogs/lib/ss/std_rqs.ct (revision 6a54128f25917bfc36a8a6e9d722c04a0b4641b6)
1*6a54128fSAndroid Build Coastguard Worker	command_table	ss_std_requests;
2*6a54128fSAndroid Build Coastguard Worker
3*6a54128fSAndroid Build Coastguard Worker	request	ss_self_identify, "Identify the subsystem.",
4*6a54128fSAndroid Build Coastguard Worker		".",
5*6a54128fSAndroid Build Coastguard Worker		(dont_list, dont_summarize);
6*6a54128fSAndroid Build Coastguard Worker
7*6a54128fSAndroid Build Coastguard Worker	request	ss_help, "Display info on command or topic.",
8*6a54128fSAndroid Build Coastguard Worker		help;
9*6a54128fSAndroid Build Coastguard Worker
10*6a54128fSAndroid Build Coastguard Worker	unimplemented
11*6a54128fSAndroid Build Coastguard Worker		ss_list_help,
12*6a54128fSAndroid Build Coastguard Worker		"List topics for which help is available.",
13*6a54128fSAndroid Build Coastguard Worker		list_help, lh;
14*6a54128fSAndroid Build Coastguard Worker
15*6a54128fSAndroid Build Coastguard Worker	request	ss_list_requests, "List available commands.",
16*6a54128fSAndroid Build Coastguard Worker		list_requests, lr, "?";
17*6a54128fSAndroid Build Coastguard Worker
18*6a54128fSAndroid Build Coastguard Worker	request	ss_quit, "Leave the subsystem.",
19*6a54128fSAndroid Build Coastguard Worker		quit, q;
20*6a54128fSAndroid Build Coastguard Worker
21*6a54128fSAndroid Build Coastguard Worker	unimplemented
22*6a54128fSAndroid Build Coastguard Worker		ss_abbrev,
23*6a54128fSAndroid Build Coastguard Worker		"Enable/disable abbreviation processing of request lines.",
24*6a54128fSAndroid Build Coastguard Worker		abbrev, ab;
25*6a54128fSAndroid Build Coastguard Worker
26*6a54128fSAndroid Build Coastguard Worker	unimplemented
27*6a54128fSAndroid Build Coastguard Worker		ss_execute,
28*6a54128fSAndroid Build Coastguard Worker		"Execute a UNIX command line.",
29*6a54128fSAndroid Build Coastguard Worker		execute, e;
30*6a54128fSAndroid Build Coastguard Worker
31*6a54128fSAndroid Build Coastguard Worker	unimplemented
32*6a54128fSAndroid Build Coastguard Worker		ss_summarize_requests,
33*6a54128fSAndroid Build Coastguard Worker		"Produce a list of the most commonly used requests.",
34*6a54128fSAndroid Build Coastguard Worker		"?";
35*6a54128fSAndroid Build Coastguard Worker
36*6a54128fSAndroid Build Coastguard Worker	request	ss_subsystem_name,
37*6a54128fSAndroid Build Coastguard Worker		"Return the name of this subsystem.",
38*6a54128fSAndroid Build Coastguard Worker		subsystem_name,
39*6a54128fSAndroid Build Coastguard Worker		(dont_list);
40*6a54128fSAndroid Build Coastguard Worker
41*6a54128fSAndroid Build Coastguard Worker	request	ss_subsystem_version,
42*6a54128fSAndroid Build Coastguard Worker		"Return the version of this subsystem.",
43*6a54128fSAndroid Build Coastguard Worker		subsystem_version,
44*6a54128fSAndroid Build Coastguard Worker		(dont_list);
45*6a54128fSAndroid Build Coastguard Worker
46*6a54128fSAndroid Build Coastguard Worker	end;
47