summaryrefslogtreecommitdiffstats
path: root/scripts/lib/bsp/tags.py
diff options
context:
space:
mode:
authorJoshua Lock <joshua.g.lock@intel.com>2017-10-23 16:45:32 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-05 22:33:24 +0000
commit58ef101032c301f54b9ecc9fcc9b84b5038df030 (patch)
tree5db5fec052601ff482a359eb7117ea09d391857f /scripts/lib/bsp/tags.py
parent2813a9380f6266aa803f7425cefff1d5d44444bf (diff)
downloadpoky-58ef101032c301f54b9ecc9fcc9b84b5038df030.tar.gz
scripts/lib/bsp: delete, all users have been removed
With the removal of yocto-bsp and yocto-kernel there are no longer any users of this library, therefore delete it. (From meta-yocto rev: 0d44e59bfaa95162cf2133df1d08f6419314bb8e) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/bsp/tags.py')
-rw-r--r--scripts/lib/bsp/tags.py49
1 files changed, 0 insertions, 49 deletions
diff --git a/scripts/lib/bsp/tags.py b/scripts/lib/bsp/tags.py
deleted file mode 100644
index 3719427884..0000000000
--- a/scripts/lib/bsp/tags.py
+++ /dev/null
@@ -1,49 +0,0 @@
1# ex:ts=4:sw=4:sts=4:et
2# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
3#
4# Copyright (c) 2012, Intel Corporation.
5# All rights reserved.
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License version 2 as
9# published by the Free Software Foundation.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License along
17# with this program; if not, write to the Free Software Foundation, Inc.,
18# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19#
20# DESCRIPTION
21# This module provides a place to define common constants for the
22# Yocto BSP Tools.
23#
24# AUTHORS
25# Tom Zanussi <tom.zanussi (at] intel.com>
26#
27
28OPEN_TAG = "{{"
29CLOSE_TAG = "}}"
30ASSIGN_TAG = "{{="
31INPUT_TAG = "input"
32IF_TAG = "if"
33FILENAME_TAG = "yocto-bsp-filename"
34DIRNAME_TAG = "yocto-bsp-dirname"
35
36INDENT_STR = " "
37
38BLANKLINE_STR = "of.write(\"\\n\")"
39NORMAL_START = "of.write"
40OPEN_START = "current_file ="
41
42INPUT_TYPE_PROPERTY = "type"
43
44SRC_URI_FILE = "file://"
45
46GIT_CHECK_URI = "git://git.yoctoproject.org/linux-yocto-dev.git"
47
48
49