summaryrefslogtreecommitdiffstats
path: root/phosphor-mapper
diff options
context:
space:
mode:
authorKun Yi <kunyi731@gmail.com>2019-03-27 09:23:54 -0700
committerKun Yi <kunyi731@gmail.com>2019-04-10 18:01:11 +0000
commit487948d820fc2717184daa96bebf2f8c6ffd4e01 (patch)
treed5e75c7e62fff251d41b3a900849eb01aef68a39 /phosphor-mapper
parent686ae77a74a9a8862c6d1ec66938b7fc281211d1 (diff)
downloadphosphor-objmgr-487948d820fc2717184daa96bebf2f8c6ffd4e01.tar.gz
phosphor-objmgr-487948d820fc2717184daa96bebf2f8c6ffd4e01.zip
cleanup: Remove Python code and build files
Remove Python code and build files now that we switched to C++ mapper Tested: built mapper package and no Python file is included Signed-off-by: Kun Yi <kunyi731@gmail.com> Change-Id: Ia8832eaae52ed85b4c1620a5d0db181e6b744ac7
Diffstat (limited to 'phosphor-mapper')
-rw-r--r--phosphor-mapper53
1 files changed, 0 insertions, 53 deletions
diff --git a/phosphor-mapper b/phosphor-mapper
deleted file mode 100644
index 4303434..0000000
--- a/phosphor-mapper
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/usr/bin/env python
-
-# Contributors Listed Below - COPYRIGHT 2016
-# [+] International Business Machines Corp.
-#
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-# implied. See the License for the specific language governing
-# permissions and limitations under the License.
-
-import sys
-import obmc.mapper.server
-from argparse import ArgumentParser
-
-if __name__ == '__main__':
- parser = ArgumentParser()
- parser.add_argument(
- '-p', '--path_namespaces',
- default="")
- parser.add_argument(
- '-s', '--service_namespaces',
- required=True)
- parser.add_argument(
- '-i', '--interface_namespaces',
- required=True)
- parser.add_argument(
- '-b', '--blacklists',
- default="")
- parser.add_argument(
- '-x', '--service_blacklists',
- default="")
- parser.add_argument(
- '-n', '--interface_blacklists',
- default="")
-
- args = parser.parse_args()
-
- sys.exit(
- obmc.mapper.server.server_main(
- path_namespaces=args.path_namespaces.split(),
- service_namespaces=args.service_namespaces.split(),
- interface_namespaces=args.interface_namespaces.split(),
- blacklists=args.blacklists.split(),
- service_blacklists=args.service_blacklists.split(),
- interface_blacklists=args.interface_blacklists.split()))
OpenPOWER on IntegriCloud