Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
9ed821d7e5d875a3395740a9cc2545671fa429b7
/
.
/
cap
/
zx297520v3
/
sources
/
poky
/
scripts
/
rootfs_rpm-extract-postinst.awk
blob: 8f2836b32cb49cc70f4a029a9a0d3e91e9d02933 [
file
] [
log
] [
blame
]
lh
9ed821d
2023-04-07 01:36:19 -0700
[
diff
] [
blame^
]
1
/Name:.*/
{
2
package
=
substr
(
$0
,
7
)
3
next
4
}
5
/
postinstall
.*
scriptlet
.*/
{
6
next
7
}
8
{
9
print
$0
>>
ENVIRON
[
"D"
]
"/etc/rpm-postinsts/"
package
".sh"
10
}
11