mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-27 00:10:29 +00:00
27 lines
430 B
Text
27 lines
430 B
Text
![]() |
post_install() {
|
||
|
echo " Bootchart usage : "
|
||
|
echo " make sure to append init=/sbin/bootchartd to your"
|
||
|
echo " kernel parameters (it is recommended that you "
|
||
|
echo " create another entry specifically for bootchart"
|
||
|
echo " logging)."
|
||
|
echo " Run bootchart-render to render your bootchart"
|
||
|
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
$op $*
|