diff options
author | Geoff Levand <geoff@infradead.org> | 2012-02-12 13:00:51 -0800 |
---|---|---|
committer | Geoff Levand <geoff@infradead.org> | 2012-02-12 13:00:51 -0800 |
commit | 5a6ff619880b4411c568b94f3731755a0584ebaf (patch) | |
tree | 144578106a73db165d9ea69452b0bb6480958630 /utils | |
parent | 5c682a67a63c45f39b5f656513d17080d8fc5394 (diff) | |
download | petitboot-5a6ff619880b4411c568b94f3731755a0584ebaf.zip petitboot-5a6ff619880b4411c568b94f3731755a0584ebaf.tar.gz |
Add new file kboot.conf.sample
Signed-off-by: Geoff Levand <geoff@infradead.org>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/kboot.conf.sample | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/utils/kboot.conf.sample b/utils/kboot.conf.sample new file mode 100644 index 0000000..d9f5e50 --- /dev/null +++ b/utils/kboot.conf.sample @@ -0,0 +1,20 @@ +# Sample kboot.conf for petitboot +# Copy to /etc/kboot.conf and modify to match your system +# + +# kboot style samples: + +# hdd='/boot/vmlinux initrd=/boot/initrd.gz root=/dev/sda1' +# tftp='tftp://192.168.0.5/fire/boot/vmlinux.strip root=/dev/nfs rw ip=dhcp video=1080p' +# nfs='nfs://192.168.0.5/fire/boot/vmlinux.strip root=/dev/nfs rw ip=dhcp video=1080p fbcon=rotate:3' +# http_nfs='http://192.168.0.5/ice/boot/vmlinux.strip nfs://192.168.0.5/ice/boot/initrd root=/dev/nfs' + +# yaboot style samples: + +# image=/boot/vmlinux +# label=yaboot-hdd +# initrd=/boot/initrd.gz +# append="root=/dev/sda1" +# image=tftp://192.168.0.5/fire/boot/vmlinux.strip +# label=yaboot-tftp +# append="root=/dev/nfs rw ip=dhcp video=1080p" |