linuxOS_PX30_CAR/yocto/poky/scripts/rootfs_rpm-extract-postinst.awk

12 lines
158 B
Awk
Raw Permalink Normal View History

2026-01-20 05:50:57 +00:00
/Name:.*/ {
package = substr($0, 7)
next
}
/postinstall.*scriptlet .*/ {
next
}
{
print $0 >> ENVIRON["D"] "/etc/rpm-postinsts/" package ".sh"
}