Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 18 Feb 2011 14:54:34 +0000 (UTC)
From:      Nathan Whitehorn <nwhitehorn@FreeBSD.org>
To:        cvs-src-old@freebsd.org
Subject:   cvs commit: src/etc/mtree BSD.usr.dist src/usr.sbin Makefile src/usr.sbin/bsdinstall Makefile bsdinstall src/usr.sbin/bsdinstall/distextract Makefile distextract.c src/usr.sbin/bsdinstall/distfetch Makefile distfetch.c ...
Message-ID:  <201102181455.p1IEt99i099897@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
nwhitehorn    2011-02-18 14:54:34 UTC

  FreeBSD src repository

  Modified files:
    etc/mtree            BSD.usr.dist 
    usr.sbin             Makefile 
  Added files:
    usr.sbin/bsdinstall  Makefile bsdinstall 
    usr.sbin/bsdinstall/distextract Makefile distextract.c 
    usr.sbin/bsdinstall/distfetch Makefile distfetch.c 
    usr.sbin/bsdinstall/partedit Makefile diskeditor.c 
                                 diskeditor.h gpart_ops.c 
                                 part_wizard.c partedit.c 
                                 partedit.h partedit_generic.c 
                                 partedit_pc98.c 
                                 partedit_powerpc.c 
                                 partedit_sparc64.c partedit_x86.c 
    usr.sbin/bsdinstall/scripts Makefile adduser auto config 
                                hostname jail keymap mount 
                                netconfig rootpass services time 
                                umount wlanconfig 
  Log:
  SVN rev 218799 on 2011-02-18 14:54:34Z by nwhitehorn
  
  Import bsdinstall. This is meant to be (eventually in conjunction with
  pc-sysinstall) a replacement for sysinstall in the 9.0 release and beyond.
  Currently supported platforms are sparc64, pc98, i386, amd64, powerpc, and
  powerpc64. Integration into the build system will occur in the coming
  weeks.
  
  Merging with pc-sysinstall will use this code as a frontend, while
  temporarily retaining the interactive partition editor here. This work
  will be done in parallel with improvements on this code and release
  integration.
  
  Thanks to all who have provided testing and comments!
  
  Revision  Changes    Path
  1.350     +2 -0      src/etc/mtree/BSD.usr.dist
  1.435     +1 -0      src/usr.sbin/Makefile
  1.1       +6 -0      src/usr.sbin/bsdinstall/Makefile (new)
  1.1       +43 -0     src/usr.sbin/bsdinstall/bsdinstall (new)
  1.1       +10 -0     src/usr.sbin/bsdinstall/distextract/Makefile (new)
  1.1       +176 -0    src/usr.sbin/bsdinstall/distextract/distextract.c (new)
  1.1       +10 -0     src/usr.sbin/bsdinstall/distfetch/Makefile (new)
  1.1       +187 -0    src/usr.sbin/bsdinstall/distfetch/distfetch.c (new)
  1.1       +25 -0     src/usr.sbin/bsdinstall/partedit/Makefile (new)
  1.1       +261 -0    src/usr.sbin/bsdinstall/partedit/diskeditor.c (new)
  1.1       +47 -0     src/usr.sbin/bsdinstall/partedit/diskeditor.h (new)
  1.1       +1092 -0   src/usr.sbin/bsdinstall/partedit/gpart_ops.c (new)
  1.1       +344 -0    src/usr.sbin/bsdinstall/partedit/part_wizard.c (new)
  1.1       +445 -0    src/usr.sbin/bsdinstall/partedit/partedit.c (new)
  1.1       +80 -0     src/usr.sbin/bsdinstall/partedit/partedit.h (new)
  1.1       +69 -0     src/usr.sbin/bsdinstall/partedit/partedit_generic.c (new)
  1.1       +69 -0     src/usr.sbin/bsdinstall/partedit/partedit_pc98.c (new)
  1.1       +63 -0     src/usr.sbin/bsdinstall/partedit/partedit_powerpc.c (new)
  1.1       +63 -0     src/usr.sbin/bsdinstall/partedit/partedit_sparc64.c (new)
  1.1       +79 -0     src/usr.sbin/bsdinstall/partedit/partedit_x86.c (new)
  1.1       +9 -0      src/usr.sbin/bsdinstall/scripts/Makefile (new)
  1.1       +34 -0     src/usr.sbin/bsdinstall/scripts/adduser (new)
  1.1       +192 -0    src/usr.sbin/bsdinstall/scripts/auto (new)
  1.1       +32 -0     src/usr.sbin/bsdinstall/scripts/config (new)
  1.1       +48 -0     src/usr.sbin/bsdinstall/scripts/hostname (new)
  1.1       +81 -0     src/usr.sbin/bsdinstall/scripts/jail (new)
  1.1       +32 -0     src/usr.sbin/bsdinstall/scripts/keymap (new)
  1.1       +55 -0     src/usr.sbin/bsdinstall/scripts/mount (new)
  1.1       +121 -0    src/usr.sbin/bsdinstall/scripts/netconfig (new)
  1.1       +37 -0     src/usr.sbin/bsdinstall/scripts/rootpass (new)
  1.1       +53 -0     src/usr.sbin/bsdinstall/scripts/services (new)
  1.1       +29 -0     src/usr.sbin/bsdinstall/scripts/time (new)
  1.1       +42 -0     src/usr.sbin/bsdinstall/scripts/umount (new)
  1.1       +137 -0    src/usr.sbin/bsdinstall/scripts/wlanconfig (new)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201102181455.p1IEt99i099897>