Skip to content

Latest commit

 

History

History

syslinux

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
quay.io/tinkerbell/actions/syslinux:latest

This action can be used to install syslinux as a boot loader, in two parts it will install the MBR at DEST_DISK and install the boot loader on the specified partition at DEST_PARTITION. Currently the only version of syslinux available is 3.86.

The below example will use the install the syslinux boot loader to a specified block device. The installation consists of installing an MBE to the first few sectors of the disk, then installing the boot loader on the FAT32 filesystem (on the specified partition).

actions:
- name: "install syslinux to /dev/sda"
  image: quay.io/tinkerbell/actions/syslinux:latest
  timeout: 90
  environment:
      DEST_DISK: /dev/sdb
      DEST_PARTITION: /dev/sdb1
      SYSLINUX_VERSION: 3.86