mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 13:49:49 +00:00
Replace POKYBASE with COREBASE
(From OE-Core rev: 607a7657715f6fcba467a4e55ba64f41f4e13a15) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -67,7 +67,7 @@ def qemuimagetest_main(d):
|
||||
os.environ["QEMUARCH"] = machine
|
||||
os.environ["QEMUTARGET"] = pname
|
||||
os.environ["DISPLAY"] = bb.data.getVar("DISPLAY", d, True)
|
||||
os.environ["POKYBASE"] = bb.data.getVar("POKYBASE", d, True)
|
||||
os.environ["COREBASE"] = bb.data.getVar("COREBASE", d, True)
|
||||
os.environ["TOPDIR"] = bb.data.getVar("TOPDIR", d, True)
|
||||
os.environ["TEST_STATUS"] = bb.data.getVar("TEST_STATUS", d, True)
|
||||
os.environ["TARGET_IPSAVE"] = bb.data.getVar("TARGET_IPSAVE", d, True)
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
#
|
||||
# Copyright (C) 2007 OpenedHand LTD
|
||||
|
||||
LIC_FILES_CHKSUM = "file://${POKYBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${POKYBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
|
||||
# IMAGE_FEATURES control content of images built with Poky.
|
||||
#
|
||||
|
||||
@@ -16,7 +16,7 @@ do_rootfs[depends] += "opkg-native:do_populate_sysroot"
|
||||
|
||||
do_rootfs[recrdeptask] += "do_package_write_rpm"
|
||||
|
||||
AWKPOSTINSTSCRIPT = "${POKYBASE}/scripts/rootfs_rpm-extract-postinst.awk"
|
||||
AWKPOSTINSTSCRIPT = "${COREBASE}/scripts/rootfs_rpm-extract-postinst.awk"
|
||||
|
||||
RPM_PREPROCESS_COMMANDS = "package_update_index_rpm; package_generate_rpm_conf; "
|
||||
RPM_POSTPROCESS_COMMANDS = ""
|
||||
|
||||
@@ -332,11 +332,11 @@ def check_sanity(e):
|
||||
f.write(current_abi)
|
||||
f.close()
|
||||
|
||||
oeroot = data.getVar('POKYBASE', e.data)
|
||||
oeroot = data.getVar('COREBASE', e.data)
|
||||
if oeroot.find ('+') != -1:
|
||||
messages = messages + "Error, you have an invalid character (+) in your POKYBASE directory path. Please move Poky to a directory which doesn't include a +."
|
||||
messages = messages + "Error, you have an invalid character (+) in your COREBASE directory path. Please move Poky to a directory which doesn't include a +."
|
||||
elif oeroot.find (' ') != -1:
|
||||
messages = messages + "Error, you have a space in your POKYBASE directory path. Please move Poky to a directory which doesn't include a space."
|
||||
messages = messages + "Error, you have a space in your COREBASE directory path. Please move Poky to a directory which doesn't include a space."
|
||||
|
||||
# Check that we don't have duplicate entries in PACKAGE_ARCHS
|
||||
pkgarchs = data.getVar('PACKAGE_ARCHS', e.data, True)
|
||||
|
||||
Reference in New Issue
Block a user