Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Aug 2012 08:08:39 -0400
From:      John Baldwin <jhb@freebsd.org>
To:        "Andrey V. Elsukov" <ae@freebsd.org>
Cc:        svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org
Subject:   Re: svn commit: r239073 - in head/sys/boot/userboot: . test userboot
Message-ID:  <201208060808.39793.jhb@freebsd.org>
In-Reply-To: <201208051704.q75H4wB6005480@svn.freebsd.org>
References:  <201208051704.q75H4wB6005480@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sunday, August 05, 2012 1:04:58 pm Andrey V. Elsukov wrote:
> Author: ae
> Date: Sun Aug  5 17:04:58 2012
> New Revision: 239073
> URL: http://svn.freebsd.org/changeset/base/239073
> 
> Log:
>   Bump USERBOOT_VERSION.
>   
>   Requested by:	dfr
> 
> Modified:
>   head/sys/boot/userboot/test/test.c
>   head/sys/boot/userboot/userboot.h
>   head/sys/boot/userboot/userboot/main.c
> 
> Modified: head/sys/boot/userboot/test/test.c
> 
==============================================================================
> --- head/sys/boot/userboot/test/test.c	Sun Aug  5 16:59:02 2012	
(r239072)
> +++ head/sys/boot/userboot/test/test.c	Sun Aug  5 17:04:58 2012	
(r239073)
> @@ -450,5 +450,5 @@ main(int argc, char** argv)
>  	term.c_lflag &= ~(ICANON|ECHO);
>  	tcsetattr(0, TCSAFLUSH, &term);
>  
> -	func(&cb, NULL, USERBOOT_VERSION_1, disk_fd >= 0);
> +	func(&cb, NULL, USERBOOT_VERSION_2, disk_fd >= 0);
>  }
> 
> Modified: head/sys/boot/userboot/userboot.h
> 
==============================================================================
> --- head/sys/boot/userboot/userboot.h	Sun Aug  5 16:59:02 2012	(r239072)
> +++ head/sys/boot/userboot/userboot.h	Sun Aug  5 17:04:58 2012	(r239073)
> @@ -30,6 +30,7 @@
>   * USERBOOT interface versions
>   */
>  #define	USERBOOT_VERSION_1      1
> +#define	USERBOOT_VERSION_2      2
>  
>  /*
>   * Exit codes from the loader
> 
> Modified: head/sys/boot/userboot/userboot/main.c
> 
==============================================================================
> --- head/sys/boot/userboot/userboot/main.c	Sun Aug  5 16:59:02 2012	
(r239072)
> +++ head/sys/boot/userboot/userboot/main.c	Sun Aug  5 17:04:58 2012	
(r239073)
> @@ -36,6 +36,8 @@ __FBSDID("$FreeBSD$");
>  #include "disk.h"
>  #include "libuserboot.h"
>  
> +#define	USERBOOT_VERSION	USERBOOT_VERSION_2
> +
>  struct loader_callbacks_v1 *callbacks;
>  void *callbacks_arg;

Should this be called loader_callbacks_v2 now?

-- 
John Baldwin



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