# HG changeset patch # User Richard Taylor # Date 1264515620 0 # Node ID cbe4932f8f5ffc787d19c934a9bfbb4991915e29 # Parent 9758784ab2d312a761f83ec521189b9a7915b7a5# Parent 2bc875af320017a5952adb544e78306e7807865c catch up to default diff -r 9758784ab2d3 -r cbe4932f8f5f sbsv2/raptor/python/plugins/filter_check.py --- a/sbsv2/raptor/python/plugins/filter_check.py Mon Jan 25 11:43:34 2010 +0000 +++ b/sbsv2/raptor/python/plugins/filter_check.py Tue Jan 26 14:20:20 2010 +0000 @@ -26,4 +26,5 @@ def __init__(self): super(filter_what.FilterWhat,self).__init__() self.check = True + self.path_prefix_to_strip = None diff -r 9758784ab2d3 -r cbe4932f8f5f sbsv2/raptor/python/raptor_meta.py --- a/sbsv2/raptor/python/raptor_meta.py Mon Jan 25 11:43:34 2010 +0000 +++ b/sbsv2/raptor/python/raptor_meta.py Tue Jan 26 14:20:20 2010 +0000 @@ -1453,10 +1453,9 @@ for cap in toks[1]: cap = cap.lower() self.__debug("Setting "+toks[0]+": " + cap) - if cap != "all": - if not cap.startswith("-"): - if not cap.startswith("+"): - cap = "+" + cap + if not cap.startswith("-"): + if not cap.startswith("+"): + cap = "+" + cap self.capabilities.append(cap) elif varname=='DEFFILE': self.__defFileRoot = self.__currentMmpFile @@ -2215,9 +2214,7 @@ if capability.startswith('-'): invert = 0xffffffff - capability = capability[1:] - elif capability.startswith('+'): - capability = capability[1:] + capability = capability[1:] if MMPRaptorBackend.supportedCapabilities.has_key(capability): capabilityFlag1 = capabilityFlag1 ^ invert diff -r 9758784ab2d3 -r cbe4932f8f5f sbsv2/raptor/test/smoke_suite/test_resources/simple/capability.mmp --- a/sbsv2/raptor/test/smoke_suite/test_resources/simple/capability.mmp Mon Jan 25 11:43:34 2010 +0000 +++ b/sbsv2/raptor/test/smoke_suite/test_resources/simple/capability.mmp Tue Jan 26 14:20:20 2010 +0000 @@ -31,4 +31,4 @@ EPOCSTACKSIZE 8192 EPOCHEAPSIZE 0x5000 65535 EPOCPROCESSPRIORITY low -capability ALL -TCB -ProtServ TCB ProtServ -DRM +capability TCB ALL -TCB -ProtServ TCB ProtServ -DRM