diff options
author | Raúl Benencia <rul@kalgan.cc> | 2019-01-09 07:03:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-09 07:03:53 -0800 |
commit | 70bb90ae82abb46c0434d806cfd79e25b7c0098d (patch) | |
tree | 0897c238912e95794d5a74345837ea4b352662c7 /configs/data-dir/ipxe/coreos.ipxe.slc | |
parent | f08e7ef525d431223084184e5e234ed8acbecfc4 (diff) | |
parent | 5e8ae5156c72593eb24dd125db32e860f59be820 (diff) |
Merge pull request #3 from rul/doc
Tidy up example files and add an scdoc manpage
Diffstat (limited to 'configs/data-dir/ipxe/coreos.ipxe.slc')
-rw-r--r-- | configs/data-dir/ipxe/coreos.ipxe.slc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/configs/data-dir/ipxe/coreos.ipxe.slc b/configs/data-dir/ipxe/coreos.ipxe.slc new file mode 100644 index 0000000..64685ff --- /dev/null +++ b/configs/data-dir/ipxe/coreos.ipxe.slc @@ -0,0 +1,16 @@ +{{define "coreos.ipxe" -}} +#!ipxe + +set coreos-url http://stable.release.core-os.net/amd64-usr/current + +echo This will currently autologin into tty1 on the console. +echo From there you can su to root and install CoreOS to disk using: +echo coreos-install -d /dev/sda -C {{.release}} +echo You will probably need to chroot into /dev/sda9 to configure accounts. +echo More info @ http://coreos.com/docs/running-coreos/bare-metal/installing-to-disk/ + +kernel ${coreos-url}/coreos_production_pxe.vmlinuz cloud-config-url=http://{{.baseURL}}/configs/cloudconfig-coreos?release={{.release}}&hostname={{.hostname}} console=tty1 coreos.autologin=tty1 +initrd ${coreos-url}/coreos_production_pxe_image.cpio.gz + +boot +{{end}}
\ No newline at end of file |