From owner-p4-projects@FreeBSD.ORG Sat Oct 1 10:49:31 2005 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 16F2116A421; Sat, 1 Oct 2005 10:49:31 +0000 (GMT) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD04116A41F for ; Sat, 1 Oct 2005 10:49:30 +0000 (GMT) (envelope-from soc-andrew@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C98943D48 for ; Sat, 1 Oct 2005 10:49:30 +0000 (GMT) (envelope-from soc-andrew@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j91AnU5Z046181 for ; Sat, 1 Oct 2005 10:49:30 GMT (envelope-from soc-andrew@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j91AnUv5046178 for perforce@freebsd.org; Sat, 1 Oct 2005 10:49:30 GMT (envelope-from soc-andrew@freebsd.org) Date: Sat, 1 Oct 2005 10:49:30 GMT Message-Id: <200510011049.j91AnUv5046178@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to soc-andrew@freebsd.org using -f From: soc-andrew To: Perforce Change Reviews Cc: Subject: PERFORCE change 84607 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Oct 2005 10:49:31 -0000 http://perforce.freebsd.org/chv.cgi?CH=84607 Change 84607 by soc-andrew@soc-andrew_serv on 2005/10/01 10:48:47 While trying to figure oput why the Lua backend wasn't running newfs on newley created partitions I noticed not all scripts were installed. While typing this message I noticed these scripts wernt in perforce Add these scripts to perforce and install them Affected files ... .. //depot/projects/soc2005/bsdinstaller/src/contrib/bsdinstaller/backend/lua/950_reboot.lua#1 add .. //depot/projects/soc2005/bsdinstaller/src/contrib/bsdinstaller/backend/lua/configure/450_init_configuration.lua#1 add .. //depot/projects/soc2005/bsdinstaller/src/contrib/bsdinstaller/backend/lua/configure/550_write_configuration.lua#1 add .. //depot/projects/soc2005/bsdinstaller/src/contrib/bsdinstaller/backend/lua/install/220_format_disk.lua#1 add .. //depot/projects/soc2005/bsdinstaller/src/contrib/bsdinstaller/backend/lua/install/270_install_bootblocks.lua#1 add .. //depot/projects/soc2005/bsdinstaller/src/contrib/bsdinstaller/backend/lua/install/405_warn_omitted_subparts.lua#1 add .. //depot/projects/soc2005/bsdinstaller/src/contrib/bsdinstaller/backend/lua/install/407_create_subparts.lua#1 add .. //depot/projects/soc2005/bsdinstaller/src/contrib/bsdinstaller/backend/lua/install/490_confirm_install_os.lua#1 add .. //depot/projects/soc2005/bsdinstaller/src/contrib/bsdinstaller/backend/lua/pit/150_configure_console.lua#1 add .. //depot/projects/soc2005/bsdinstaller/src/contrib/bsdinstaller/backend/lua/upgrade/550_upgrade_configuration.lua#1 add .. //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/base/Makefile#2 edit .. //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/configure/Makefile#2 edit .. //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/inst/Makefile#3 edit .. //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/pit/Makefile#2 edit Differences ... ==== //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/base/Makefile#2 (text+ko) ==== @@ -1,7 +1,7 @@ NOOBJ= FILES= 200_install.lua 400_configure.lua 600_upgrade.lua \ - 800_netboot.lua main.lua + 800_netboot.lua 950_reboot.lua main.lua FILESDIR= ${INST_DIR} ==== //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/configure/Makefile#2 (text+ko) ==== @@ -1,8 +1,10 @@ NOOBJ= FILES= 100_choose_where_from.lua 200_select_disk.lua \ - 300_select_part.lua 400_mount_target_system.lua 500_menu.lua \ - 600_unmount_target_system.lua main.lua + 300_select_part.lua 400_mount_target_system.lua \ + 450_init_configuration.lua 500_menu.lua \ + 550_write_configuration.lua 600_unmount_target_system.lua \ + main.lua FILESDIR= ${INST_DIR}/configure ==== //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/inst/Makefile#3 (text+ko) ==== @@ -1,10 +1,13 @@ NOOBJ= -FILES= 100_welcome.lua 200_select_disk.lua 250_partition_disk.lua \ +FILES= 100_welcome.lua 200_select_disk.lua 220_format_disk.lua \ + 250_partition_disk.lua 270_install_bootblocks.lua \ 300_select_part.lua 400_select_subparts.lua \ + 405_warn_omitted_subparts.lua 407_create_subparts.lua \ 410_select_additional_filesystems.lua \ 420_preselect_packages.lua 450_select_packages.lua \ - 500_install_os.lua 800_finished.lua 900_reboot.lua main.lua + 490_confirm_install_os.lua 500_install_os.lua 800_finished.lua \ + 900_reboot.lua main.lua FILESDIR= ${INST_DIR}/install ==== //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/pit/Makefile#2 (text+ko) ==== @@ -1,7 +1,8 @@ NOOBJ= FILES= 050_welcome.lua 100_select_language.lua \ - 400_load_kernel_modules.lua 800_configure_network.lua main.lua + 150_configure_console.lua 400_load_kernel_modules.lua \ + 800_configure_network.lua main.lua FILESDIR= ${INST_DIR}/pit