Lines Matching full:feature
56 "unit-hwmon-feature",
60 #feature, then we don't want to use it.
116 #The useful name for this feature, like 'ambient'
197 # LABEL_<feature> = <descriptive label> (e.g. LABEL_temp1 = ambient)
198 # WARNHI_<feature> = <value> (e.g. WARNHI_temp1 = 99)
199 # WARNLO_<feature> = <value> (e.g. WARNLO_temp1 = 0)
200 # CRITHI_<feature> = <value> (e.g. CRITHI_temp1 = 100)
201 # CRITHI_<feature> = <value> (e.g. CRITLO_temp1 = -1)
215 for my $feature (sort keys %{$entry->{hwmon}}) {
216 print $f "LABEL_$feature = \"$entry->{hwmon}{$feature}{label}\"\n";
219 if (exists $entry->{hwmon}{$feature}{warnhigh}) {
220 print $f "WARNHI_$feature = \"$entry->{hwmon}{$feature}{warnhigh}\"\n";
222 if (exists $entry->{hwmon}{$feature}{warnlow}) {
223 print $f "WARNLO_$feature = \"$entry->{hwmon}{$feature}{warnlow}\"\n";
225 if (exists $entry->{hwmon}{$feature}{crithigh}) {
226 print $f "CRITHI_$feature = \"$entry->{hwmon}{$feature}{crithigh}\"\n";
228 if (exists $entry->{hwmon}{$feature}{critlow}) {
229 print $f "CRITLO_$feature = \"$entry->{hwmon}{$feature}{critlow}\"\n";