Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Oct 2009 11:00:03 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: kern/126926: commit references a PR
Message-ID:  <200910011100.n91B03Mp029912@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/126926; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/126926: commit references a PR
Date: Thu,  1 Oct 2009 10:53:24 +0000 (UTC)

 Author: avg
 Date: Thu Oct  1 10:53:12 2009
 New Revision: 197658
 URL: http://svn.freebsd.org/changeset/base/197658
 
 Log:
   print machine in kernel boot version string
   
   Discussed with:	gavin, kib, jhb
   PR:		kern/126926
   MFC after:	2 weeks
 
 Modified:
   head/sys/kern/init_main.c
 
 Modified: head/sys/kern/init_main.c
 ==============================================================================
 --- head/sys/kern/init_main.c	Thu Oct  1 10:46:22 2009	(r197657)
 +++ head/sys/kern/init_main.c	Thu Oct  1 10:53:12 2009	(r197658)
 @@ -288,11 +288,24 @@ print_caddr_t(void *data)
  {
  	printf("%s", (char *)data);
  }
 +
 +static void
 +print_version(void *data __unused)
 +{
 +	int len;
 +
 +	/* Strip a trailing newline from version. */
 +	len = strlen(version);
 +	while (len > 0 && version[len - 1] == '\n')
 +		len--;
 +	printf("%.*s %s\n", len, version, machine);
 +}
 +
  SYSINIT(announce, SI_SUB_COPYRIGHT, SI_ORDER_FIRST, print_caddr_t,
      copyright);
  SYSINIT(trademark, SI_SUB_COPYRIGHT, SI_ORDER_SECOND, print_caddr_t,
      trademark);
 -SYSINIT(version, SI_SUB_COPYRIGHT, SI_ORDER_THIRD, print_caddr_t, version);
 +SYSINIT(version, SI_SUB_COPYRIGHT, SI_ORDER_THIRD, print_version, NULL);
  
  #ifdef WITNESS
  static char wit_warn[] =
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 



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