From owner-cvs-src@FreeBSD.ORG Sat Feb 16 22:13:12 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B64B16A50D; Sat, 16 Feb 2008 22:13:12 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3BF6B13C45E; Sat, 16 Feb 2008 22:13:12 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1GMDC2W053591; Sat, 16 Feb 2008 22:13:12 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1GMDCoJ053590; Sat, 16 Feb 2008 22:13:12 GMT (envelope-from marcel) Message-Id: <200802162213.m1GMDCoJ053590@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 16 Feb 2008 22:13:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/uboot Makefile src/sys/boot/uboot/common Makefile.inc main.c src/sys/boot/uboot/lib Makefile api_public.h console.c copy.c devicename.c disk.c elf_freebsd.c glue.c libuboot.h module.c net.c reboot.c time.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Feb 2008 22:13:12 -0000 marcel 2008-02-16 22:13:12 UTC FreeBSD src repository Added files: sys/boot/uboot Makefile sys/boot/uboot/common Makefile.inc main.c sys/boot/uboot/lib Makefile api_public.h console.c copy.c devicename.c disk.c elf_freebsd.c glue.c libuboot.h module.c net.c reboot.c time.c Log: MFp4 (e500): Add support for U-Boot. This uses the U-Boot API as developed by Rafal and which is (will be) part of U-Boot 1.3.2 and later. Credits to: raj@ Revision Changes Path 1.1 +5 -0 src/sys/boot/uboot/Makefile (new) 1.1 +3 -0 src/sys/boot/uboot/common/Makefile.inc (new) 1.1 +226 -0 src/sys/boot/uboot/common/main.c (new) 1.1 +28 -0 src/sys/boot/uboot/lib/Makefile (new) 1.1 +104 -0 src/sys/boot/uboot/lib/api_public.h (new) 1.1 +83 -0 src/sys/boot/uboot/lib/console.c (new) 1.1 +57 -0 src/sys/boot/uboot/lib/copy.c (new) 1.1 +237 -0 src/sys/boot/uboot/lib/devicename.c (new) 1.1 +103 -0 src/sys/boot/uboot/lib/disk.c (new) 1.1 +90 -0 src/sys/boot/uboot/lib/elf_freebsd.c (new) 1.1 +530 -0 src/sys/boot/uboot/lib/glue.c (new) 1.1 +74 -0 src/sys/boot/uboot/lib/libuboot.h (new) 1.1 +46 -0 src/sys/boot/uboot/lib/module.c (new) 1.1 +252 -0 src/sys/boot/uboot/lib/net.c (new) 1.1 +34 -0 src/sys/boot/uboot/lib/reboot.c (new) 1.1 +61 -0 src/sys/boot/uboot/lib/time.c (new)