Changeset View
Changeset View
Standalone View
Standalone View
usr.bin/mkimg/scheme.c
| Show First 20 Lines • Show All 52 Lines • ▼ Show 20 Lines | static struct { | ||||
| { "freebsd-nandfs", ALIAS_FREEBSD_NANDFS }, | { "freebsd-nandfs", ALIAS_FREEBSD_NANDFS }, | ||||
| { "freebsd-swap", ALIAS_FREEBSD_SWAP }, | { "freebsd-swap", ALIAS_FREEBSD_SWAP }, | ||||
| { "freebsd-ufs", ALIAS_FREEBSD_UFS }, | { "freebsd-ufs", ALIAS_FREEBSD_UFS }, | ||||
| { "freebsd-vinum", ALIAS_FREEBSD_VINUM }, | { "freebsd-vinum", ALIAS_FREEBSD_VINUM }, | ||||
| { "freebsd-zfs", ALIAS_FREEBSD_ZFS }, | { "freebsd-zfs", ALIAS_FREEBSD_ZFS }, | ||||
| { "mbr", ALIAS_MBR }, | { "mbr", ALIAS_MBR }, | ||||
| { "ntfs", ALIAS_NTFS }, | { "ntfs", ALIAS_NTFS }, | ||||
| { "prepboot", ALIAS_PPCBOOT }, | { "prepboot", ALIAS_PPCBOOT }, | ||||
| { "hifive-bbl", ALIAS_HIFIVE_BBL }, | |||||
| { "xbootldr", ALIAS_XBOOTLDR }, | |||||
| { "hifive-fsbl", ALIAS_HIFIVE_FSBL }, | |||||
markj: Doesn't have to be fixed here, but I'm surprised these aren't listed in the mkimg(1) man page… | |||||
| { NULL, ALIAS_NONE } /* Keep last! */ | { NULL, ALIAS_NONE } /* Keep last! */ | ||||
| }; | }; | ||||
| static struct mkimg_scheme *first; | static struct mkimg_scheme *first; | ||||
| static struct mkimg_scheme *scheme; | static struct mkimg_scheme *scheme; | ||||
| static void *bootcode; | static void *bootcode; | ||||
| static enum alias | static enum alias | ||||
| ▲ Show 20 Lines • Show All 133 Lines • Show Last 20 Lines | |||||
Doesn't have to be fixed here, but I'm surprised these aren't listed in the mkimg(1) man page or in the usage message...