From owner-svn-soc-all@FreeBSD.ORG Fri Jun 5 20:50:32 2015 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3ED2DA47 for ; Fri, 5 Jun 2015 20:50:32 +0000 (UTC) (envelope-from kczekirda@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2117F1BFB for ; Fri, 5 Jun 2015 20:50:32 +0000 (UTC) (envelope-from kczekirda@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.14.9/8.14.9) with ESMTP id t55KoVd5077268 for ; Fri, 5 Jun 2015 20:50:31 GMT (envelope-from kczekirda@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.14.9/8.14.9/Submit) id t55KoUhb076688 for svn-soc-all@FreeBSD.org; Fri, 5 Jun 2015 20:50:30 GMT (envelope-from kczekirda@FreeBSD.org) Date: Fri, 5 Jun 2015 20:50:30 GMT Message-Id: <201506052050.t55KoUhb076688@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to kczekirda@FreeBSD.org using -f From: kczekirda@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r286698 - in soc2015/kczekirda/ipxe: . files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jun 2015 20:50:32 -0000 Author: kczekirda Date: Fri Jun 5 20:50:30 2015 New Revision: 286698 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=286698 Log: Permission denied: isolinux.bin and cleaning Modified: soc2015/kczekirda/ipxe/Makefile soc2015/kczekirda/ipxe/files/patch-util_geniso soc2015/kczekirda/ipxe/pkg-descr Modified: soc2015/kczekirda/ipxe/Makefile ============================================================================== --- soc2015/kczekirda/ipxe/Makefile Fri Jun 5 18:16:10 2015 (r286697) +++ soc2015/kczekirda/ipxe/Makefile Fri Jun 5 20:50:30 2015 (r286698) @@ -1,5 +1,4 @@ -# Created by: Andrzej Tobola -# and Kamil Czekirda +# Created by: Andrzej Tobola , Kamil Czekirda # $FreeBSD$ # Date created: 2015-05-28 @@ -7,8 +6,10 @@ PORTVERSION= 1.0.0+ CATEGORIES= net MASTER_SITES= http://ipxe.pl/freebsd/ -MAINTAINER= kczekirda@freebsd.org,ato@iem.pw.edu.pl -COMMENT= Open Source (GPL) implementation of the Preboot eXecution Environment (PXE) client firmware and bootloader + +MAINTAINER= kczekirda@freebsd.org +COMMENT= Open Source (GPL) implementation of the PXE client and bootloader + LICENSE= GPLv2 ONLY_FOR_ARCHS= amd64 i386 @@ -36,7 +37,7 @@ do-install: ${MKDIR} ${STAGEDIR}${DATADIR} cd ${WRKSRC} && ${INSTALL_DATA} ${BINLIST} ${STAGEDIR}${DATADIR} - ${INSTALL_DATA} ${EMBEDED_SCR} ${STAGEDIR}${DATADIR} +# ${INSTALL_DATA} ${EMBEDED_SCR} ${STAGEDIR}${DATADIR} ${LN} -sfh ${PORTVERSION} ${STAGEDIR}${DATADIR}/VER .include Modified: soc2015/kczekirda/ipxe/files/patch-util_geniso ============================================================================== --- soc2015/kczekirda/ipxe/files/patch-util_geniso Fri Jun 5 18:16:10 2015 (r286697) +++ soc2015/kczekirda/ipxe/files/patch-util_geniso Fri Jun 5 20:50:30 2015 (r286698) @@ -1,4 +1,4 @@ ---- util/geniso.orig 2015-06-05 17:32:45 UTC +--- util/geniso.orig 2015-06-05 20:26:05 UTC +++ util/geniso @@ -2,7 +2,7 @@ # @@ -41,7 +41,7 @@ case "${FIRST}" in "") echo "DEFAULT ${b}" -@@ -116,20 +115,20 @@ case "${LEGACY}" in +@@ -116,20 +115,21 @@ case "${LEGACY}" in fi # generate the iso image @@ -51,6 +51,7 @@ 0) # copy isolinux bootloader cp ${ISOLINUX_BIN} ${dir} ++ chmod +w $dir/isolinux.bin # syslinux 6.x needs a file called ldlinux.c32 - LDLINUX_C32=$(dirname ${ISOLINUX_BIN})/ldlinux.c32 Modified: soc2015/kczekirda/ipxe/pkg-descr ============================================================================== --- soc2015/kczekirda/ipxe/pkg-descr Fri Jun 5 18:16:10 2015 (r286697) +++ soc2015/kczekirda/ipxe/pkg-descr Fri Jun 5 20:50:30 2015 (r286698) @@ -1,5 +1,8 @@ iPXE is an open-source PXE implementation and bootloader. -Create network booting code that allows computers to load their operating system from a network or to extend an existing PXE implementation with support for additional protocols, such iSCSI, HTTP, TFTP, NFS, FTP and ATA over Ethernet. +Create network booting code that allows computers to load their operating +system from a network or to extend an existing PXE implementation with support +for additional protocols, such iSCSI, HTTP, TFTP, NFS, FTP +and ATA over Ethernet. WWW: http://www.ipxe.org/