summaryrefslogtreecommitdiff
path: root/meta-openbmc-mods/meta-common/classes/print-src.bbclass
blob: 63613b6a06f4848466298a008778bb7e07cba36e (plain)
1
2
3
4
5
6
7
8
python do_print_src () {
    srcuri = d.getVar('SRC_URI', True).split()
    srcrev = d.getVar('SRCREV', True).split()
    thisdir = d.getVar('THISDIR', True).split()
    bb.warn("THISDIR: %s SRC_URI: %s SRCREV: %s" % (thisdir, srcuri, srcrev))
}

addtask do_print_src before do_fetch