done
        fi
 
-       #### Note: 'Recommends' is an arbitrary tag that means _SUGGESTS_ in Poky..
+       #### Note: 'Recommends' is an arbitrary tag that means _SUGGESTS_ in OE-core..
        # Add any recommended packages to the image
        # RPM does not solve for recommended packages because they are optional...
        # So we query them and tree them like the ATTEMPTONLY packages above...
                                        splitrobsoletes = dep
 
                print_deps(splitrdepends,       "Requires", spec_preamble_bottom, d)
-               # Suggests in RPM are like recommends in Poky!
+               # Suggests in RPM are like recommends in OE-core!
                print_deps(splitrrecommends,    "Suggests", spec_preamble_bottom, d)
                # While there is no analog for suggests... (So call them recommends for now)
                print_deps(splitrsuggests,      "Recommends", spec_preamble_bottom, d)
 
        print_deps(srcdepends,          "BuildRequires", spec_preamble_top, d)
        print_deps(srcrdepends,         "Requires", spec_preamble_top, d)
-       # Suggests in RPM are like recommends in Poky!
+       # Suggests in RPM are like recommends in OE-core!
        print_deps(srcrrecommends,      "Suggests", spec_preamble_top, d)
        # While there is no analog for suggests... (So call them recommends for now)
        print_deps(srcrsuggests,        "Recommends", spec_preamble_top, d)
                outfile.write("\tprintf \"%s\\n\" ${line}\n")
                outfile.write("done\n")
 
-       # Poky dependencies a.k.a. RPM requires
+       # OE-core dependencies a.k.a. RPM requires
        outdepends = workdir + "/" + srcname + ".requires"
 
        try:
        dependsfile.close()
        os.chmod(outdepends, 0755)
 
-       # Poky / RPM Provides
+       # OE-core / RPM Provides
        outprovides = workdir + "/" + srcname + ".provides"
 
        try:
 
 SANITY_REQUIRED_UTILITIES ?= "patch diffstat texi2html makeinfo svn bzip2 tar gzip gawk chrpath wget cpio"
 
 def raise_sanity_error(msg):
-    bb.fatal(""" Poky's config sanity checker detected a potential misconfiguration.
+    bb.fatal(""" OE-core's config sanity checker detected a potential misconfiguration.
     Either fix the cause of this error or at your own risk disable the checker (see sanity.conf).
     Following is the list of potential problems / advisories: