rk3568_ubuntu_r60_v1.3.2/yocto/poky/scripts/rootfs_rpm-extract-postinst.awk
2023-11-03 06:12:44 +00:00

12 lines
158 B
Awk

/Name:.*/ {
package = substr($0, 7)
next
}
/postinstall.*scriptlet .*/ {
next
}
{
print $0 >> ENVIRON["D"] "/etc/rpm-postinsts/" package ".sh"
}