From owner-svn-src-all@freebsd.org Fri May 24 05:34:23 2019 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B61B1598729; Fri, 24 May 2019 05:34:23 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 41CFD74E9A; Fri, 24 May 2019 05:34:23 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1DB3F18594; Fri, 24 May 2019 05:34:23 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4O5YNEx026179; Fri, 24 May 2019 05:34:23 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4O5YL7l026173; Fri, 24 May 2019 05:34:21 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201905240534.x4O5YL7l026173@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Fri, 24 May 2019 05:34:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r348225 - in head: . stand/i386 stand/i386/kgzldr targets/pseudo/userland targets/pseudo/userland/misc usr.sbin usr.sbin/kgzip X-SVN-Group: head X-SVN-Commit-Author: delphij X-SVN-Commit-Paths: in head: . stand/i386 stand/i386/kgzldr targets/pseudo/userland targets/pseudo/userland/misc usr.sbin usr.sbin/kgzip X-SVN-Commit-Revision: 348225 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 41CFD74E9A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 May 2019 05:34:23 -0000 Author: delphij Date: Fri May 24 05:34:21 2019 New Revision: 348225 URL: https://svnweb.freebsd.org/changeset/base/348225 Log: Remove kgzip and kgzldr. PR: 183666, 229763 Submitted by: Yoshihiro Ota Differential Revision: https://reviews.freebsd.org/D20248 Deleted: head/stand/i386/kgzldr/ head/usr.sbin/kgzip/ Modified: head/ObsoleteFiles.inc head/stand/i386/Makefile head/targets/pseudo/userland/Makefile.depend head/targets/pseudo/userland/misc/Makefile.depend head/usr.sbin/Makefile.amd64 head/usr.sbin/Makefile.i386 Modified: head/ObsoleteFiles.inc ============================================================================== --- head/ObsoleteFiles.inc Fri May 24 05:12:43 2019 (r348224) +++ head/ObsoleteFiles.inc Fri May 24 05:34:21 2019 (r348225) @@ -38,6 +38,11 @@ # xargs -n1 | sort | uniq -d; # done +# 20190523: Remove obsolete kgzip and support files +OLD_FILES+=usr/sbin/kgzip +OLD_FILES+=usr/lib/kgzldr.o +OLD_FILES+=usr/share/man/man8/kgzip.8.gz + # 20190517: Remove obsolete 10 and 10/100 ethernet drivers. OLD_FILES+=usr/share/man/man4/bm.4.gz OLD_FILES+=usr/share/man/man4/cs.4.gz Modified: head/stand/i386/Makefile ============================================================================== --- head/stand/i386/Makefile Fri May 24 05:12:43 2019 (r348224) +++ head/stand/i386/Makefile Fri May 24 05:34:21 2019 (r348225) @@ -16,10 +16,6 @@ SUBDIR.yes+= loader_simp # special boot programs, 'self-extracting boot2+loader' SUBDIR.yes+= pxeldr -.if ${MACHINE_CPUARCH} == "i386" -SUBDIR.yes+= kgzldr -.endif - SUBDIR.${MK_LOADER_ZFS}+= zfsboot gptzfsboot .include Modified: head/targets/pseudo/userland/Makefile.depend ============================================================================== --- head/targets/pseudo/userland/Makefile.depend Fri May 24 05:12:43 2019 (r348224) +++ head/targets/pseudo/userland/Makefile.depend Fri May 24 05:34:21 2019 (r348225) @@ -827,7 +827,6 @@ DIRDEPS.i386= \ usr.sbin/hyperv/tools/kvp \ usr.sbin/hyperv/tools/vss \ usr.sbin/kgmon \ - usr.sbin/kgzip \ usr.sbin/lptcontrol \ usr.sbin/mptable \ usr.sbin/ndiscvt \ Modified: head/targets/pseudo/userland/misc/Makefile.depend ============================================================================== --- head/targets/pseudo/userland/misc/Makefile.depend Fri May 24 05:12:43 2019 (r348224) +++ head/targets/pseudo/userland/misc/Makefile.depend Fri May 24 05:34:21 2019 (r348225) @@ -83,7 +83,7 @@ DIRDEPS+= \ DIRDEPS.arm= ${_sys_boot_fdt} ${_sys_boot_efi} DIRDEPS.arm64= ${_sys_boot_fdt} ${_sys_boot_efi} -DIRDEPS.i386= ${DIRDEPS.x86sys} ${_sys_boot_efi} stand/i386/kgzldr +DIRDEPS.i386= ${DIRDEPS.x86sys} ${_sys_boot_efi} DIRDEPS.powerpc= ${_sys_boot_fdt} stand/libsa32 stand/ofw stand/uboot DIRDEPS.sparc64= stand/ofw ${_sys_boot_zfs} .endif Modified: head/usr.sbin/Makefile.amd64 ============================================================================== --- head/usr.sbin/Makefile.amd64 Fri May 24 05:12:43 2019 (r348224) +++ head/usr.sbin/Makefile.amd64 Fri May 24 05:34:21 2019 (r348225) @@ -1,6 +1,5 @@ # $FreeBSD$ -# kgzip: builds, but missing support files # mptable: broken (not 64 bit clean) # pnpinfo: crashes (not really useful anyway) .if ${MK_ACPI} != "no" Modified: head/usr.sbin/Makefile.i386 ============================================================================== --- head/usr.sbin/Makefile.i386 Fri May 24 05:12:43 2019 (r348224) +++ head/usr.sbin/Makefile.i386 Fri May 24 05:34:21 2019 (r348225) @@ -16,7 +16,6 @@ SUBDIR+= cpucontrol SUBDIR+= hyperv .endif SUBDIR+= kgmon -SUBDIR+= kgzip SUBDIR+= lptcontrol SUBDIR+= mptable .if ${MK_NDIS} != "no"