diff options
author | MyungJoo Ham <myungjoo.ham@samsung.com> | 2017-04-25 20:25:11 +0900 |
---|---|---|
committer | MyungJoo Ham <myungjoo.ham@samsung.com> | 2017-04-25 20:25:11 +0900 |
commit | 13fded7662212c80dca9be38c84f5e9d51ba8fcb (patch) | |
tree | 6d9b1a75a9cbd0d76395d3d7a4f52ca05d878c8b | |
parent | 89de03b366a4517724f36dea052ab5d5168ab978 (diff) | |
download | building-blocks-13fded7662212c80dca9be38c84f5e9d51ba8fcb.tar.gz building-blocks-13fded7662212c80dca9be38c84f5e9d51ba8fcb.tar.bz2 building-blocks-13fded7662212c80dca9be38c84f5e9d51ba8fcb.zip |
RULE 5.7.1 modified to allow smart-device examples to express KS
Change-Id: Ia759ed5b6d18861aaf6b876adb8722273a7cd049
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
-rw-r--r-- | RULES | 2 | ||||
-rwxr-xr-x | rule_checker.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -132,7 +132,7 @@ or packages, but is used to provide UI elements in TIC. 5.7. If the first line of %description starts with __KS_URL__, it denotes for the model ks file URL to be interpreted by TIC. - 5.7.1. Only platform-preset-boards may use such keywords + 5.7.1. Only platform-Preset_boards/sd may use such keywords 5.7.2. Only one package with such keyword is effective. If there are two packages with such keywords are chosen simultaneously, the behavior is "undefined". 5.7.3. The section of "%packages" in the linked ks file is ignored. diff --git a/rule_checker.py b/rule_checker.py index fc15901..48fe5c6 100755 --- a/rule_checker.py +++ b/rule_checker.py @@ -117,7 +117,7 @@ def ruleCheckInc(file): if description == 1: description = 0 if re.search(r'^__KS_URL__', line): - if not re.search(r'Preset_boards-', descpkg): + if not re.search(r'Preset_boards-', descpkg) and not re.search(r'Preset_sd-', descpkg): error += 1 print("ERROR: Rule 5.7.1. The package: "+descpkg) report(file, lc, line) |