python2: drop bbappend

This bbappend was added long time ago and it is useless now.

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Joe MacDonald <joe@deserted.net>
This commit is contained in:
Yi Zhao 2021-08-19 12:47:02 +08:00 committed by Joe MacDonald
parent 0c417aa70d
commit a101ac3dce
4 changed files with 0 additions and 34 deletions

View File

@ -7,8 +7,6 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
BBFILES_DYNAMIC += "networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bb \ BBFILES_DYNAMIC += "networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bb \
networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bbappend \ networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bbappend \
meta-python2:${LAYERDIR}/dynamic-layers/python2-layer/recipes*/*/*.bb \
meta-python2:${LAYERDIR}/dynamic-layers/python2-layer/recipes*/*/*.bbappend \
" "
BBFILE_COLLECTIONS += "selinux" BBFILE_COLLECTIONS += "selinux"

View File

@ -1,26 +0,0 @@
# OpenEmbedded sitecustomize.py (C) 2002-2008 Michael 'Mickey' Lauer <mlauer@vanille-media.de>
# GPLv2 or later
# Version: 20081123
# Features:
# * set proper default encoding
# Features removed for SELinux:
# * enable readline completion in the interactive interpreter
# * load command line history on startup
# * save command line history on exit
import os
def __enableDefaultEncoding():
import sys
try:
sys.setdefaultencoding( "utf8" )
except LookupError:
pass
import sys
try:
import rlcompleter, readline
except ImportError:
pass
else:
__enableDefaultEncoding()

View File

@ -1 +0,0 @@
require ${@bb.utils.contains('DISTRO_FEATURES', 'selinux', '${BPN}_selinux.inc', '', d)}

View File

@ -1,5 +0,0 @@
# If selinux enabled, disable handlers to rw command history file
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
inherit selinux