1*bb75b0d5SLexi Winter/* 2*bb75b0d5SLexi Winter * Copyright (c) 2011-2013 Nathan Whitehorn <nwhitehorn@FreeBSD.org> All rights reserved. 3*bb75b0d5SLexi Winter * Copyright (c) 2018 Roberto Fernandez Cueto <roberfern@gmail.com> 4*bb75b0d5SLexi Winter * Copyright (c) 2024 The FreeBSD Foundation 5*bb75b0d5SLexi Winter * 6*bb75b0d5SLexi Winter * Portions of this documentation were written by Björn Zeeb 7*bb75b0d5SLexi Winter * under sponsorship from the FreeBSD Foundation. 8*bb75b0d5SLexi Winter * 9*bb75b0d5SLexi Winter * Redistribution and use in source and binary forms, with or without 10*bb75b0d5SLexi Winter * modification, are permitted provided that the following conditions 11*bb75b0d5SLexi Winter * are met: 12*bb75b0d5SLexi Winter * 1. Redistributions of source code must retain the above copyright 13*bb75b0d5SLexi Winter * notice, this list of conditions and the following disclaimer. 14*bb75b0d5SLexi Winter * 2. Redistributions in binary form must reproduce the above copyright 15*bb75b0d5SLexi Winter * notice, this list of conditions and the following disclaimer in the 16*bb75b0d5SLexi Winter * documentation and/or other materials provided with the distribution. 17*bb75b0d5SLexi Winter * 18*bb75b0d5SLexi Winter * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 19*bb75b0d5SLexi Winter * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 20*bb75b0d5SLexi Winter * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 21*bb75b0d5SLexi Winter * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, 22*bb75b0d5SLexi Winter * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 23*bb75b0d5SLexi Winter * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 24*bb75b0d5SLexi Winter * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25*bb75b0d5SLexi Winter * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 26*bb75b0d5SLexi Winter * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 27*bb75b0d5SLexi Winter * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28*bb75b0d5SLexi Winter * POSSIBILITY OF SUCH DAMAGE. 29*bb75b0d5SLexi Winter */ 30*bb75b0d5SLexi Winter 31*bb75b0d5SLexi Wintercomment = "System installer" 32*bb75b0d5SLexi Winter 33*bb75b0d5SLexi Winterdesc = <<EOD 34*bb75b0d5SLexi Winterbsdinstall is used for installation of new systems, both for system setup from 35*bb75b0d5SLexi Winterinstallation media, e.g., CD-ROMs, and for use on live systems to prepare VM 36*bb75b0d5SLexi Winterimages and jails. 37*bb75b0d5SLexi WinterEOD 38