From: Steven Rostedt Date: Fri, 30 Sep 2011 23:44:53 +0000 (-0400) Subject: ktest: Add IF and ELSE to config sections X-Git-Tag: v3.2-rc2~31^2~12 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45d73a5d8a98dbabcdf37e2da5ef5b0412244643;p=pandora-kernel.git ktest: Add IF and ELSE to config sections Add IF keyword to sections within the config. Also added an ELSE keyword that allows different config options to be set for a given section. For example: TYPE := 1 STATUS := 0 DEFAULTS IF ${TYPE} [...] ELSE IF ${STATUS} [...] ELSE [...] The above will process the first section as $TYPE is true. If it was false, it would process the last section as $STATUS is false. Signed-off-by: Steven Rostedt --- Reading git-diff-tree failed