aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/sysroot-relativelinks.py
AgeCommit message (Expand)Author
2016-06-02scripts: python3: change python to python3 in shebangEd Bartosh
2013-09-11image/populate_sdk: Ensure symlinks in target sysroot are relativeRichard Purdie
enQi/mktemp-coreutils'>ChenQi/mktemp-coreutils OpenEmbedded Core user contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/rootfs_rpm-extract-postinst.awk
blob: 8f2836b32cb49cc70f4a029a9a0d3e91e9d02933 (plain)
1
2
3
4
5
6
7
8
9
10
11
/Name:.*/ {
  package = substr($0, 7)
  next
}
/postinstall.*scriptlet .*/ {
  next
}
{
  print $0 >> ENVIRON["D"] "/etc/rpm-postinsts/" package ".sh"
}