From 8421e0e29f5e2073de8b8162b28a99e2582bd64e Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Mon, 3 Aug 2015 16:51:49 +0300 Subject: wic: code cleanup: remove unused code Removed unused global variable wks_vars and 2 unused functions get_wks_var and add_wks_var. (From OE-Core rev: 7d87c821da6a5020e8dde3f1907fb8d6a023b110) Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- scripts/lib/wic/utils/oe/misc.py | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'scripts') diff --git a/scripts/lib/wic/utils/oe/misc.py b/scripts/lib/wic/utils/oe/misc.py index af831d3505..0fa8a53b98 100644 --- a/scripts/lib/wic/utils/oe/misc.py +++ b/scripts/lib/wic/utils/oe/misc.py @@ -120,17 +120,6 @@ def exec_native_cmd(cmd_and_args, native_sysroot, catch=3): return (rc, out) -# kickstart doesn't support variable substution in commands, so this -# is our current simplistic scheme for supporting that - -wks_vars = dict() - -def get_wks_var(key): - return wks_vars[key] - -def add_wks_var(key, val): - wks_vars[key] = val - BOOTDD_EXTRA_SPACE = 16384 _BITBAKE_VARS = defaultdict(dict) -- cgit v1.2.3-54-g00ecf