mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
15 lines
216 B
Bash
15 lines
216 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
mkinitrd $@ -o /boot/initrd.chart.gz
|
|
|
|
cd /boot
|
|
sed -i s/"sbin\/init"/"sbin\/bootchartd"/g /boot/initrd-tree/init
|
|
OPTIONS=`echo $@|sed s/"-c"/""/`
|
|
|
|
mkinitrd $OPTIONS -o /boot/initrd.chart.gz
|
|
|
|
|
|
|
|
|