package
0.0.0-20240905033552-c50090bf3da5
Repository: https://github.com/tinkerbell/actions.git
Documentation: pkg.go.dev

# README

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

# Functions

ReReadPartitionTable forces the kernel to re-read the partition table on the disk.

# Constants

No description provided by the author