summaryrefslogtreecommitdiffstats
path: root/dracut/anaconda-copy-cmdline.sh
blob: 2731d6c5e6038227d567b513d6c169529f30441e (plain)
1
2
3
4
5
6
7
#!/bin/sh
# Copy over cmdline(.d) files from the initrd to /run before pivot
mkdir -p /run/install/cmdline.d
for f in /etc/cmdline.d/*; do
    [ -e $f ] && cp $f /run/install/cmdline.d/
done
[ -e /etc/cmdline ] && cp /etc/cmdline /run/install/