FreeBSD 10.2-BETA2 Now Available

Glen Barber gjb at FreeBSD.org
Fri Jul 17 22:57:05 UTC 2015


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

The second BETA build of the 10.2-RELEASE release cycle is now
available.

Installation images are available for:

o amd64 GENERIC
o i386 GENERIC
o ia64 GENERIC
o powerpc GENERIC
o powerpc64 GENERIC64
o sparc64 GENERIC

The image checksums follow at the end of this email.

FreeBSD/arm SD card images are available for:

o BEAGLEBONE
o CUBOX-HUMMINGBOARD
o GUMSTIX
o RPI-B
o PANDABOARD
o WANDBOARD

Note:  For convenience for those without console access to supported arm
devices, a default 'freebsd' user exists for ssh(1) login.  The password
is 'freebsd', which it is strongly recommended to change after gaining
access to the system.  Additionally, the 'root' user password is 'root',
which is also recommended to change.

All images can be downloaded from:

  ftp://ftp.freebsd.org/pub/FreeBSD/releases/ISO-IMAGES/10.2/

If you notice problems you can report them through the Bugzilla PR
system or on the -stable mailing list.

If you would like to use SVN to do a source based update of an existing
system, use the "stable/10" branch.

A list of changes since 10.1-RELEASE are available on the stable/10
release notes:

  https://www.freebsd.org/relnotes/10-STABLE/relnotes/article.html

Please note, the release notes page is not yet complete, and will be
updated on an ongoing basis as the 10.2-RELEASE cycle progresses.

=== Changes Since 10.2-BETA1 ===

o [arm] The missing GEOM_LABEL in the GUMSTIX and PANDABOARD kernel
  configuration files that prevented the '/dev/ufs/rootfs' fstab(5)
  entry to mount the root filesystem has been fixed.

o Correctly handle rare events of transient write errors to the cylinder
  group blocks.

o An incorrect implementation of kvasprintf() in the Linux compatibility
  and emulation code has been fixed.

o Setting the initial system clock time for systems with a CMOS clock
  set before the year 2000 has been fixed.

o The pw(8) utility has been updated to allow creating users with UID 0,
  in addition to other miscellaneous updates.

o The MIB names in the 'user' sysctl(3) tree have been fixed to no
  longer return '0' or empty values.

o The lo(4) driver has been updated to fix an issue where pcap(3) and
  bpf(4) would fail when writing to the interface.

o The watchdog(4) device has been fixed to print to the correct buffer.

o [arm] The '/var/log' and '/var/tmp' directories are no longer mounted
  as md(4)-backed devices, which would cause messages from syslogd(8)
  and other applications from retaining log files after reboot(8).

o A kernel bug that would cause various issues on systems without
  a battery-backed clock has been fixed.

o The ntp suite has been updated to version 4.2.8p3.

o The port and protocol information for IPSEC are now included in the
  SADB_ACQUIRE message as required by RFC 2367.

o Fix the issue with devices requiring memory below 4G (such as USB
  controllers), unable to initialize on very large memory machines (64G
  or more).

=== Virtual Machine Disk Images ===
 
VM disk images are available for the amd64 and i386 architectures.
Disk images may be downloaded from the following URL (or any of the
FreeBSD FTP mirrors):

  ftp://ftp.freebsd.org/pub/FreeBSD/releases/VM-IMAGES/10.2-BETA2/

The partition layout is:

 ~ 512k - freebsd-boot GPT partition type (bootfs GPT label)
 ~ 1GB  - freebsd-swap GPT partition type (swapfs GPT label)
 ~ ~17GB - freebsd-ufs GPT partition type (rootfs GPT label)

The disk images are available in QCOW2, VMDK, and raw disk image formats
The image download size is approximately 135 MB, which decompress to a
20GB sparse image.

Note:  An issue preventing the VHD-formatted images from booting was
discovered during the BETA1 build, which is still being investigated.

Note to consumers of the dvd1.iso image: The bsdconfig(8) utility cannot
install the packages included on the DVD, however they can be installed
manually.

To install packages from the dvd1.iso installer, create and mount the
/dist directory:

        # mkdir -p /dist
	# mount -t cd9660 /dev/cd0 /dist

Replace '/dev/cd0' with the appropriate cd(4) device as necessary.

Next, bootstrap pkg(8) from the DVD: 

	# env REPOS_DIR=/dist/packages/repos \
	  pkg bootstrap

At this point, pkg-install(8) can be used to install additional packages
from the DVD.  Please note, the REPOS_DIR environment variable should be
used each time using the DVD as the package repository, otherwise
conflicts with packages from the upstream mirrors may occur when they
are fetched.  For example, to install Gnome and Xorg, run:

	# env REPOS_DIR=/dist/packages/repos \
	  pkg install xorg-server xorg gnome3 [...]

=== Amazon EC2 AMI Images ===

FreeBSD/amd64 EC2 AMIs are available in the following regions:

 us-east-1 region: ami-77f1201c
 us-west-1 region: ami-a9fd0fed
 us-west-2 region: ami-41999b71
 sa-east-1 region: ami-ddff70c0
 eu-west-1 region: ami-76175e01
 eu-central-1 region: ami-ca8db7d7
 ap-northeast-1 region: ami-70ef5a70
 ap-southeast-1 region: ami-aa8784f8
 ap-southeast-2 region: ami-6b246251

=== Azure / VM Depot Images ===

FreeBSD/amd64 images are available for use within the Microsoft Azure
hosting platform through VM Depot.  For deployment instructions, see:

  https://vmdepot.msopentech.com/Vhd/Show?vhdId=56718&version=59050

=== Vagrant Images ===

FreeBSD/amd64 images are available on the Hashicorp Atlas site, and can
be installed by running:

	% vagrant init freebsd/FreeBSD-10.2-BETA2
	% vagrant up --provider vmware_desktop

Note:  At this time, support exists only for the vmware_desktop
provider.

=== Upgrading ===

The freebsd-update(8) utility supports binary upgrades of amd64 and i386
systems running earlier FreeBSD releases.  Systems running earlier
FreeBSD releases can upgrade as follows:

	# freebsd-update upgrade -r 10.2-BETA2

During this process, freebsd-update(8) may ask the user to help by
merging some configuration files or by confirming that the automatically
performed merging was done correctly.

	# freebsd-update install

The system must be rebooted with the newly installed kernel before
continuing.

	# shutdown -r now

After rebooting, freebsd-update needs to be run again to install the new
userland components:

	# freebsd-update install

It is recommended to rebuild and install all applications if possible,
especially if upgrading from an earlier FreeBSD release, for example,
FreeBSD 9.x.  Alternatively, the user can install misc/compat9x and
other compatibility libraries, afterwards the system must be rebooted
into the new userland:

	# shutdown -r now

Finally, after rebooting, freebsd-update needs to be run again to remove
stale files:

	# freebsd-update install

== ISO CHECKSUMS ==

o 10.2-BETA2 amd64 GENERIC:
  SHA256 (FreeBSD-10.2-BETA2-amd64-bootonly.iso) = 54e8d150b8129a29cd411f83596764b822267c07dd819a7c0781176f4ada88cb
  SHA256 (FreeBSD-10.2-BETA2-amd64-bootonly.iso.xz) = f8a0cf57a72b019e10591fc3ad7bc00ad77f8d637565d7f1eb09d3ccd85c6623
  SHA256 (FreeBSD-10.2-BETA2-amd64-disc1.iso) = 93af0e90f9bd804a8f719fc2ecbb92631debe8e0c46bf6d2f2ebf078a38e1242
  SHA256 (FreeBSD-10.2-BETA2-amd64-disc1.iso.xz) = e37e9c0527bf058b2ed34c0eac499fe694c9ef1f04e9f6b9e24293611a6fbe6e
  SHA256 (FreeBSD-10.2-BETA2-amd64-dvd1.iso) = 65e84531f5d430232d161e32b03295693e8c734973f60dd40ceba3dc128f766c
  SHA256 (FreeBSD-10.2-BETA2-amd64-dvd1.iso.xz) = d9b3c5c461c997f9682e3a797c9216a1fe285b8e522e458392da3bc5fbceb003
  SHA256 (FreeBSD-10.2-BETA2-amd64-memstick.img) = 752a45808e4e72d6fc2aedd3d0da412d6c472a9a8b8c6cda632ef4caaec40eac
  SHA256 (FreeBSD-10.2-BETA2-amd64-memstick.img.xz) = 669e63ede67b3ed05b8fa2fa899ec30f0f85f5bf9dacb9aaacec1eb19cad966b
  SHA256 (FreeBSD-10.2-BETA2-amd64-mini-memstick.img) = 2ee29b658f8882e05e3480c30f211b8ca774429b25f00449e62ce5eb926dca6e
  SHA256 (FreeBSD-10.2-BETA2-amd64-mini-memstick.img.xz) = eff85a9c36e28107c07820a6819b6c34f365c9f5c5ebf64f93b72c5047f3eaf9
  SHA256 (FreeBSD-10.2-BETA2-amd64-uefi-bootonly.iso) = c85528e58bcec8f7efc25aee1acaf14c3c0f7e624ad705056ea7fbfaaedd4615
  SHA256 (FreeBSD-10.2-BETA2-amd64-uefi-bootonly.iso.xz) = 90661396f0a90041ea04e460519ef6605349b4a6ddeffa9b4d693400acd2fb5a
  SHA256 (FreeBSD-10.2-BETA2-amd64-uefi-disc1.iso) = cdae6963646ab474c56294cafa3f26e5589b9d98ff7ba040262931937dcb11ad
  SHA256 (FreeBSD-10.2-BETA2-amd64-uefi-disc1.iso.xz) = 31e899805854d067754564a54eeaf9064cf640ca868cfcaa3cf595182e3c19c6
  SHA256 (FreeBSD-10.2-BETA2-amd64-uefi-dvd1.iso) = c34dc34141794001a4bea44d5bdbd3c207562e76a474393bccdb60680329171a
  SHA256 (FreeBSD-10.2-BETA2-amd64-uefi-dvd1.iso.xz) = fb2881d06aac63f95e498adade703d62de2947c04af39047e9022252334923b8
  SHA256 (FreeBSD-10.2-BETA2-amd64-uefi-memstick.img) = 78b2a6d1d8fba19cf3442bfb7bd08329edf9b44435e5d76e16fb6b222a1f1da9
  SHA256 (FreeBSD-10.2-BETA2-amd64-uefi-memstick.img.xz) = a9d97d6a14851cc557f216631ec66bba21766ff7eaac4a5581842eede507a2aa
  SHA256 (FreeBSD-10.2-BETA2-amd64-uefi-mini-memstick.img) = 2491d4705e4a9ecad72d134bee2e122af24e5366b0ab1636e720badf5738f9f1
  SHA256 (FreeBSD-10.2-BETA2-amd64-uefi-mini-memstick.img.xz) = 2bd9e58986ba2a9f829878aa484c6c6fe9f4339b75375562378f2638343edeed

  MD5 (FreeBSD-10.2-BETA2-amd64-bootonly.iso) = 790c50b6675a42e24bd5a964078d6c65
  MD5 (FreeBSD-10.2-BETA2-amd64-bootonly.iso.xz) = 3392bc3f2ee7f39ed9a15c5476ea877a
  MD5 (FreeBSD-10.2-BETA2-amd64-disc1.iso) = 1a07bf23e2cdb83fa4458c6b6d712098
  MD5 (FreeBSD-10.2-BETA2-amd64-disc1.iso.xz) = 671d53d2c44674e33a199ad160b3dc00
  MD5 (FreeBSD-10.2-BETA2-amd64-dvd1.iso) = 36d80baddb656e90ac391df7b99b218d
  MD5 (FreeBSD-10.2-BETA2-amd64-dvd1.iso.xz) = 109d4eb4ab04eafecd769af00d2344c4
  MD5 (FreeBSD-10.2-BETA2-amd64-memstick.img) = 98bddad382ec9236383e33e22f3891b5
  MD5 (FreeBSD-10.2-BETA2-amd64-memstick.img.xz) = 9dffbf50661c2eca4320eaa378aada33
  MD5 (FreeBSD-10.2-BETA2-amd64-mini-memstick.img) = f8278654278b22d6e2a6c7f8cccfaf3a
  MD5 (FreeBSD-10.2-BETA2-amd64-mini-memstick.img.xz) = 15cb103bfc2e183abd1f40604708f9f0
  MD5 (FreeBSD-10.2-BETA2-amd64-uefi-bootonly.iso) = 4a568d0f5b1b0a5c8b840b9288b3f850
  MD5 (FreeBSD-10.2-BETA2-amd64-uefi-bootonly.iso.xz) = 9e7948409d0d6667fde45c3d6646301b
  MD5 (FreeBSD-10.2-BETA2-amd64-uefi-disc1.iso) = 5e899ebc19f4dd27e182b81768afb7d4
  MD5 (FreeBSD-10.2-BETA2-amd64-uefi-disc1.iso.xz) = fc258da5d02c645451b5df6e1fda9c74
  MD5 (FreeBSD-10.2-BETA2-amd64-uefi-dvd1.iso) = 358746d9eff58ffe1985a90cd7098ebd
  MD5 (FreeBSD-10.2-BETA2-amd64-uefi-dvd1.iso.xz) = 3874f5e5468638a3337bcadc35a77e28
  MD5 (FreeBSD-10.2-BETA2-amd64-uefi-memstick.img) = 20d074a89e84dacc2358a7ef210085a1
  MD5 (FreeBSD-10.2-BETA2-amd64-uefi-memstick.img.xz) = 180b9720c94c6da6d23953650de81c29
  MD5 (FreeBSD-10.2-BETA2-amd64-uefi-mini-memstick.img) = 9e72042721997e1b1b7f20fd02a4be53
  MD5 (FreeBSD-10.2-BETA2-amd64-uefi-mini-memstick.img.xz) = 47b62ae717bd6b0f20cb94e8c9e8d078


o 10.2-BETA2 i386 GENERIC:
  SHA256 (FreeBSD-10.2-BETA2-i386-bootonly.iso) = 234db3f5a7e1073b26a126aa5212bdcdf9699eb69d98c2d417895c502853c47f
  SHA256 (FreeBSD-10.2-BETA2-i386-bootonly.iso.xz) = 5fa6200e7fe1b186d8eb1a06b4291c40fe76a93e88af462dea637814f0525ab7
  SHA256 (FreeBSD-10.2-BETA2-i386-disc1.iso) = edc2dd7c1db0c3a8c3a9e3a90f6ade94ae8ab856545b6dfc28c5cb4d21456359
  SHA256 (FreeBSD-10.2-BETA2-i386-disc1.iso.xz) = eb84bc7723c57b2527f849e0887d7b9bc470bf1bcaa30bb73d035d87fab3cc68
  SHA256 (FreeBSD-10.2-BETA2-i386-dvd1.iso) = 409465bbd05257e7f2b1f457ea813fb7e29cfda6d9acbcc4d3d24b7e7a6e611f
  SHA256 (FreeBSD-10.2-BETA2-i386-dvd1.iso.xz) = b32e06163f4d205d445d5dbe6560ef11f91f60559038600e5dd685512a0228f4
  SHA256 (FreeBSD-10.2-BETA2-i386-memstick.img) = afa4542272c9385a7fe0beeb22b94f724d81ee6ed3b493e4435be02d6d98f4c0
  SHA256 (FreeBSD-10.2-BETA2-i386-memstick.img.xz) = a6d4ad350424e6616d3c344456d278b6409616589b9ba036763e4837ada70a42
  SHA256 (FreeBSD-10.2-BETA2-i386-mini-memstick.img) = 03b7b20032a045807ecaa0064a9510efaccbc69286acff49460075b8e517e738
  SHA256 (FreeBSD-10.2-BETA2-i386-mini-memstick.img.xz) = 3325bf9ac8414c4ea802f1d3fccf4ba46aeb5d78df943d656e88a63df316e16b

  MD5 (FreeBSD-10.2-BETA2-i386-bootonly.iso) = 83b43665c521065d473113c28f871b4c
  MD5 (FreeBSD-10.2-BETA2-i386-bootonly.iso.xz) = f03db21dcc9438eb78e1610d3bcfae51
  MD5 (FreeBSD-10.2-BETA2-i386-disc1.iso) = f3e64f5e0c958b898b9cfc34cd5f720a
  MD5 (FreeBSD-10.2-BETA2-i386-disc1.iso.xz) = 21548e287cdeb748d0a8cd2a94eff6a7
  MD5 (FreeBSD-10.2-BETA2-i386-dvd1.iso) = 1b968b5f3f6e4270822437ecdf438b01
  MD5 (FreeBSD-10.2-BETA2-i386-dvd1.iso.xz) = b967c47fc28249f051d62b0d322fdede
  MD5 (FreeBSD-10.2-BETA2-i386-memstick.img) = 7e53f506da3c02c4d5117ba66a9a0197
  MD5 (FreeBSD-10.2-BETA2-i386-memstick.img.xz) = ac65869542816c642f174ce489fe6cb7
  MD5 (FreeBSD-10.2-BETA2-i386-mini-memstick.img) = 36c8e5f3d271149b69ad4bbce3884af1
  MD5 (FreeBSD-10.2-BETA2-i386-mini-memstick.img.xz) = a9e0df72aada7ccdf8b76cf940ddcee3


o 10.2-BETA2 ia64 GENERIC:
  SHA256 (FreeBSD-10.2-BETA2-ia64-bootonly.iso) = 6e647e2c8ad9e86ff6fb068dc24789a4fcd46c92363bdb7b0b7186781c65d97c
  SHA256 (FreeBSD-10.2-BETA2-ia64-bootonly.iso.xz) = 0fec5637acebfbcaad09be2f99171eb987c917c8d5a998a2c380658993a6680f
  SHA256 (FreeBSD-10.2-BETA2-ia64-disc1.iso) = 0996bbc88747b24638270cc15dcdcc27a23f16dc9f802be0e2d23b20c50c6618
  SHA256 (FreeBSD-10.2-BETA2-ia64-disc1.iso.xz) = fce65482580715e5ae3c3c0cde7a98f015f6bfe1130353895d4ead2fdb918f6e
  SHA256 (FreeBSD-10.2-BETA2-ia64-dvd1.iso) = bbaaa618b1cea429a18b94aa28a6938ba3d3253f87af688420576478e2ff3d27
  SHA256 (FreeBSD-10.2-BETA2-ia64-dvd1.iso.xz) = 8135c6129552f84073243804b1690955baa7d3b8f6822ae99c588669f9917aa9
  SHA256 (FreeBSD-10.2-BETA2-ia64-memstick.img) = 53b9eee41989c1100aa00180183010b64e349253a167f6d9887653c2797cef6e
  SHA256 (FreeBSD-10.2-BETA2-ia64-memstick.img.xz) = e1c73a8ac861d67f4933231c6f0f4b823ce477b8f101451e40404801a2bd7802
  SHA256 (FreeBSD-10.2-BETA2-ia64-mini-memstick.img) = c842a38747543f53e083411095f2f84aa29e500d4e073c9a480c6285af2dd640
  SHA256 (FreeBSD-10.2-BETA2-ia64-mini-memstick.img.xz) = 0efb703afd55fcf3520b5921a5a9a4ee76cccee81f333be04253137d7005db3b

  MD5 (FreeBSD-10.2-BETA2-ia64-bootonly.iso) = 5984ea311b8e725eace3e005a7650cec
  MD5 (FreeBSD-10.2-BETA2-ia64-bootonly.iso.xz) = cfef309e48ba26f54882d645599ecb0c
  MD5 (FreeBSD-10.2-BETA2-ia64-disc1.iso) = 6a5917a93999c8bdf2595dc22926602e
  MD5 (FreeBSD-10.2-BETA2-ia64-disc1.iso.xz) = 6fa0e8f8bb93fbb4d17b267c2281da74
  MD5 (FreeBSD-10.2-BETA2-ia64-dvd1.iso) = 809f49d6fb3dfdd003c7ab84b440d56f
  MD5 (FreeBSD-10.2-BETA2-ia64-dvd1.iso.xz) = 4e6ab389bfc55d10e1ad8393ebb87253
  MD5 (FreeBSD-10.2-BETA2-ia64-memstick.img) = c2dce3f0f653db0114cce999f6767b0c
  MD5 (FreeBSD-10.2-BETA2-ia64-memstick.img.xz) = f5eacd60b57dd0776c4d4ddd36ac41c2
  MD5 (FreeBSD-10.2-BETA2-ia64-mini-memstick.img) = 62b4e15dcec6e386b67f1702e74b8d5c
  MD5 (FreeBSD-10.2-BETA2-ia64-mini-memstick.img.xz) = d2baf0db9b64f8286b6147c04e0db813


o 10.2-BETA2 powerpc GENERIC:
  SHA256 (FreeBSD-10.2-BETA2-powerpc-bootonly.iso) = d9eedf403a89069a370845d34cc8d4834e5801650ca9b0f7fbfa458cad1bf176
  SHA256 (FreeBSD-10.2-BETA2-powerpc-bootonly.iso.xz) = f21e02f0b6d3be89c5bbc7d36120f9f9f03551b3de1cd30dda659d282195cd0b
  SHA256 (FreeBSD-10.2-BETA2-powerpc-disc1.iso) = f471881a541651b1ef306951ef3ab55edb254843ad4756b46f6ac5f76db18382
  SHA256 (FreeBSD-10.2-BETA2-powerpc-disc1.iso.xz) = b8f63090cc79bf1c12d2b96a93e854c77b61d6f4c08b3f04603cbf4591b0c79d
  SHA256 (FreeBSD-10.2-BETA2-powerpc-dvd1.iso) = 7238d88e8729d36135767f9a05246d50b4ee4cc8fe1af0f5816494092e6ca022
  SHA256 (FreeBSD-10.2-BETA2-powerpc-dvd1.iso.xz) = 0faa1b34e4a92f1c7df7e8bfd8e52ee84d4a618ef4cc63b77e3d5626e588e912
  SHA256 (FreeBSD-10.2-BETA2-powerpc-memstick.img) = 79615ca2f4f01067cc9f87565de3f2e221e8a34bf8754e0701883a5f4e270773
  SHA256 (FreeBSD-10.2-BETA2-powerpc-memstick.img.xz) = 565eb00eeb7fcc7a5b6dd8f57661b16fcd1f944f3859efd0fd802aa855a3fb74
  SHA256 (FreeBSD-10.2-BETA2-powerpc-mini-memstick.img) = 0e1204be2adc5fa7013849038d399b49fb79bc441869761a12e5c00856ebde30
  SHA256 (FreeBSD-10.2-BETA2-powerpc-mini-memstick.img.xz) = e8a23742cd30f1ffcf4d11a6525da23e36544526a94a2cc1fc10a5d5e2721c33

  MD5 (FreeBSD-10.2-BETA2-powerpc-bootonly.iso) = 88ac1dd6ccba301fe7cd5fc15c166a4f
  MD5 (FreeBSD-10.2-BETA2-powerpc-bootonly.iso.xz) = 8b78a1866175d559421ada947d0a10f0
  MD5 (FreeBSD-10.2-BETA2-powerpc-disc1.iso) = 305868c57f6a828e7fdb355586feb10b
  MD5 (FreeBSD-10.2-BETA2-powerpc-disc1.iso.xz) = 24ff50aa4026f4eca825571495ccd7b1
  MD5 (FreeBSD-10.2-BETA2-powerpc-dvd1.iso) = d391485f4b8ec8e34338aa10100723bc
  MD5 (FreeBSD-10.2-BETA2-powerpc-dvd1.iso.xz) = b5385412ef3c9b92c00e045dfa57769e
  MD5 (FreeBSD-10.2-BETA2-powerpc-memstick.img) = e8f1248be0fa2059ef0548172d7ece95
  MD5 (FreeBSD-10.2-BETA2-powerpc-memstick.img.xz) = 97328ddfd760e8e6943fc6a9942e1697
  MD5 (FreeBSD-10.2-BETA2-powerpc-mini-memstick.img) = 11a3e677e60b22d3434462ec403ff90f
  MD5 (FreeBSD-10.2-BETA2-powerpc-mini-memstick.img.xz) = 419bab100920b2d6e332d70203007b1b


o 10.2-BETA2 powerpc64 GENERIC64:
  SHA256 (FreeBSD-10.2-BETA2-powerpc-powerpc64-bootonly.iso) = 16e8938f21502794289eaccf2b84abbcec8c00f0f645fe2d94115ba941a350e9
  SHA256 (FreeBSD-10.2-BETA2-powerpc-powerpc64-bootonly.iso.xz) = eadc6d220e9ac00052c14c93debe9b4b1cdd45efe6a3a7f9ec651832f6784f1d
  SHA256 (FreeBSD-10.2-BETA2-powerpc-powerpc64-disc1.iso) = 902ecc37578c2cf6057a89607a91394dff9424f0ed69cfd62f89269239641baa
  SHA256 (FreeBSD-10.2-BETA2-powerpc-powerpc64-disc1.iso.xz) = 900518b6d89514ab74dfb2e82357f63c1141cd25669d1180465758ded08d4bcb
  SHA256 (FreeBSD-10.2-BETA2-powerpc-powerpc64-dvd1.iso) = 869b8cabe0cfade2ed4e17808e5ed86533580d4c68df0fe3059525322a562ff7
  SHA256 (FreeBSD-10.2-BETA2-powerpc-powerpc64-dvd1.iso.xz) = 952e69113d0ab25c665f08ebe3afcc2b4b92722be7db76bf2f24e4538246b533
  SHA256 (FreeBSD-10.2-BETA2-powerpc-powerpc64-memstick.img) = 9443e73c80229b0f1e121ae03255e6e69ad823f6616ad3a25e287ea23feedef6
  SHA256 (FreeBSD-10.2-BETA2-powerpc-powerpc64-memstick.img.xz) = 46e7b3153fc378c57463c813f4fe0abdc04afa738cea95db51fc00c7f9fbd259
  SHA256 (FreeBSD-10.2-BETA2-powerpc-powerpc64-mini-memstick.img) = be5ed4e1ca0f3cb73ae06be8a2292e5c1c74cd505edae13aebd294b14ddc1bed
  SHA256 (FreeBSD-10.2-BETA2-powerpc-powerpc64-mini-memstick.img.xz) = 49178243b8622dba6fedb854ed67eb8bae98f8eb767eb0f01bc3e48b2b2f0711

  MD5 (FreeBSD-10.2-BETA2-powerpc-powerpc64-bootonly.iso) = 593b5048267f172a2879783fa6e34208
  MD5 (FreeBSD-10.2-BETA2-powerpc-powerpc64-bootonly.iso.xz) = 1ed2f8aa5e4e1e6d87a0d56583eb608f
  MD5 (FreeBSD-10.2-BETA2-powerpc-powerpc64-disc1.iso) = d33f15d2acb96de4ee177809735111ac
  MD5 (FreeBSD-10.2-BETA2-powerpc-powerpc64-disc1.iso.xz) = 054ba95df01ae65a4719ad103ba04e2d
  MD5 (FreeBSD-10.2-BETA2-powerpc-powerpc64-dvd1.iso) = 1b7ee8792094fc52df0fc20d5b0a29d6
  MD5 (FreeBSD-10.2-BETA2-powerpc-powerpc64-dvd1.iso.xz) = 82260361c0ec769d8f0170c9b80198d8
  MD5 (FreeBSD-10.2-BETA2-powerpc-powerpc64-memstick.img) = 81c3f30f47bb85a88e509be64054f83a
  MD5 (FreeBSD-10.2-BETA2-powerpc-powerpc64-memstick.img.xz) = de72a86f36bc2004995d1c57e4a31887
  MD5 (FreeBSD-10.2-BETA2-powerpc-powerpc64-mini-memstick.img) = 0b8de932d3310a8c12ba5c390caae4ea
  MD5 (FreeBSD-10.2-BETA2-powerpc-powerpc64-mini-memstick.img.xz) = cd9a92fcaa33d2fbb88e2c6c5e5e2b43


o 10.2-BETA2 sparc64 GENERIC:
  SHA256 (FreeBSD-10.2-BETA2-sparc64-bootonly.iso) = b3a127c626c104b9e96874dbdeb6facfac450b448032497a2d9fe89ee257a85a
  SHA256 (FreeBSD-10.2-BETA2-sparc64-bootonly.iso.xz) = fbe42086e503d3cda93ee916dd710c43ecb781f0bb96b07acdd7dc6bbac13b71
  SHA256 (FreeBSD-10.2-BETA2-sparc64-disc1.iso) = 55c07716441a4059b0c9fe9e15d3c4b47e0406bbf53c061c93a5d988175f2aa0
  SHA256 (FreeBSD-10.2-BETA2-sparc64-disc1.iso.xz) = da44a59cb7ac004a4b4bd6873f1e69b7aaef11a72cb66472ea5a62419e6b541d
  SHA256 (FreeBSD-10.2-BETA2-sparc64-dvd1.iso) = e9cbfa728b55aca7d0274c7bae1c0c25d52bd9ae3396112f9d0f70243adb503a
  SHA256 (FreeBSD-10.2-BETA2-sparc64-dvd1.iso.xz) = 3a9b9eec04620c648000207fb73a1f64e51417805b0f8f5c42f6384e2539ad69

  MD5 (FreeBSD-10.2-BETA2-sparc64-bootonly.iso) = 6f7c95fb3550ec7ccf0629838a92d6e3
  MD5 (FreeBSD-10.2-BETA2-sparc64-bootonly.iso.xz) = d91acf2fe025f770dc269d9393c9e2d8
  MD5 (FreeBSD-10.2-BETA2-sparc64-disc1.iso) = e92d7ce460735fa9090d3d5064bdbf39
  MD5 (FreeBSD-10.2-BETA2-sparc64-disc1.iso.xz) = e5c2e9e869dde64adcbb0faa07c337f1
  MD5 (FreeBSD-10.2-BETA2-sparc64-dvd1.iso) = b28fc6842441b75f1f69668216ecb3fd
  MD5 (FreeBSD-10.2-BETA2-sparc64-dvd1.iso.xz) = 3c10683f9ca438198986e4053ffbf3f9


o 10.2-BETA2 armv6 BEAGLEBONE:
  SHA256 (FreeBSD-10.2-BETA2-arm-armv6-BEAGLEBONE.img.xz) = 4bb833211e7e8fdae75e61d1113aa8c8c17e9a9edf63f566eed4efd0381489b1

  MD5 (FreeBSD-10.2-BETA2-arm-armv6-BEAGLEBONE.img.xz) = f5b286dd5968e35e951bdbc30a0b8451


o 10.2-BETA2 armv6 CUBOX-HUMMINGBOARD:
  SHA256 (FreeBSD-10.2-BETA2-arm-armv6-CUBOX-HUMMINGBOARD.img.xz) = c1a858f1dcae0caf3a6fa356d141bf46212b9b46a724772ad6fe6089d51acd65

  MD5 (FreeBSD-10.2-BETA2-arm-armv6-CUBOX-HUMMINGBOARD.img.xz) = 836c9b4fb856f624ed5815dd806ed751


o 10.2-BETA2 armv6 GUMSTIX:
  SHA256 (FreeBSD-10.2-BETA2-arm-armv6-GUMSTIX.img.xz) = 84a1c50249821271ff368556feef8d47b899fa260a26db79f9e4197aebb7dba5

  MD5 (FreeBSD-10.2-BETA2-arm-armv6-GUMSTIX.img.xz) = 3e7b8d70698b8d22a0b774d1fa930704


o 10.2-BETA2 armv6 RPI-B:
  SHA256 (FreeBSD-10.2-BETA2-arm-armv6-RPI-B.img.xz) = 7daa9951ea607f33cf938f7016ee1e0ad0f8650d6c7052238790d712b60c01ac

  MD5 (FreeBSD-10.2-BETA2-arm-armv6-RPI-B.img.xz) = 00b6a86ff2a6d129ad15b6332d2c95fc


o 10.2-BETA2 armv6 PANDABOARD:
  SHA256 (FreeBSD-10.2-BETA2-arm-armv6-PANDABOARD.img.xz) = 9e8f2eb5a758e47a05f9ffd7eefaf2961ae83a9d4ba8a569bc4cd5802dd5cc70

  MD5 (FreeBSD-10.2-BETA2-arm-armv6-PANDABOARD.img.xz) = 0d33d1e881cbb82d5bf63791c723c2f7


o 10.2-BETA2 armv6 WANDBOARD:
  SHA256 (FreeBSD-10.2-BETA2-arm-armv6-WANDBOARD.img.xz) = b9a883f0360c080ffdccbcad957196107b67911cc976c78af5b724c79f2e1e2f

  MD5 (FreeBSD-10.2-BETA2-arm-armv6-WANDBOARD.img.xz) = 2510c8a9222fa74e3ee2cbd561933b9f


== VM IMAGE CHECKSUMS ==

o 10.2-BETA2 amd64:
  SHA256 (FreeBSD-10.2-BETA2-amd64.qcow2.xz) = 10f3d6ba10654698b9c642d7412069446f13a252ac6401caccc336dbcacd646c
  SHA256 (FreeBSD-10.2-BETA2-amd64.raw.xz) = 9218a8b9c99c69ab40fe2e95c142adc02e7e2d4dac5ba37d19a022cac56b6f63
  SHA256 (FreeBSD-10.2-BETA2-amd64.vhd.xz) = b76183b280acd1247bee3290125c9207af98eeaed5332ad398790bb3a3730b0c
  SHA256 (FreeBSD-10.2-BETA2-amd64.vmdk.xz) = 35a3f317f9815f61e0854bd9f7cc8a78d3419b7dc76f3a8586a777727fef1c99

  MD5 (FreeBSD-10.2-BETA2-amd64.qcow2.xz) = e9a800efbf6238d0f2bf6ac2a4e1d708
  MD5 (FreeBSD-10.2-BETA2-amd64.raw.xz) = 430fbfd4ef7b0499e264666a4b844cf0
  MD5 (FreeBSD-10.2-BETA2-amd64.vhd.xz) = c905f934639c55a590aac563027cee7c
  MD5 (FreeBSD-10.2-BETA2-amd64.vmdk.xz) = e4ec429a8e0de5d56810a885db8e8008


o 10.2-BETA2 i386:
  SHA256 (FreeBSD-10.2-BETA2-i386.qcow2.xz) = b83c23b84f43101e27639e238023d6f0e8f9771d56809965ded461d748a5aa7c
  SHA256 (FreeBSD-10.2-BETA2-i386.raw.xz) = 96021b5aeda1edc8516a2699bc79f39df1b3bfc8f229ac8508d29d955eea61c5
  SHA256 (FreeBSD-10.2-BETA2-i386.vhd.xz) = 77f5e7d141d9c49ef9263e321358c838fe008d7d58ee8e6d1a3e9637e425aeb1
  SHA256 (FreeBSD-10.2-BETA2-i386.vmdk.xz) = b98b0bcc7badb7f7b47c40779ed8765f297b6c44daf5621bb07b6ac300b78515

  MD5 (FreeBSD-10.2-BETA2-i386.qcow2.xz) = 3fa75eba537e5ce1f0f4630aa31b7016
  MD5 (FreeBSD-10.2-BETA2-i386.raw.xz) = e827173563c4ba402ed85673e732e842
  MD5 (FreeBSD-10.2-BETA2-i386.vhd.xz) = aaf8a48b54536c4c41a959abe841e888
  MD5 (FreeBSD-10.2-BETA2-i386.vmdk.xz) = 3a383047d9bd0aca52345d60b1fc0062


Regards,

Glen
Love FreeBSD?  Support this and future releases with a donation to
the FreeBSD Foundation!  https://www.freebsdfoundation.org/donate/

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2

iQIcBAEBCAAGBQJVqYg+AAoJEAMUWKVHj+KTe90P/jTh7Y6e+USaVxYTFFBIhIPf
NOZeQqqpMGC7inLblRbb2i/0I7ComXWHj6PJNQAxzcbmH8FBWa7gbsvk1R9EH13I
cgQ/71l/KiwnXxhaZqsiWj2tT1mKtQOYqFkQ+UpAN77YHuaBZlodi2vIS+n2mGTT
TfmpiseyurjFyLna17V4hP9gDMejGY3FK0VcctI3RIUAK2gLLjGyO+BXZMkXiZRq
VqoPGgmxH/YlHS18gtb2ipZNWRKKf8ABu0KjzwtkqIB7O1SPw6QCNBOCy7US7c77
kyL1FOEDrUsR18o2pwhhnjoLbtfuIUEc6uF6f2ratscfNH0/58HMtpBYZwKYDhSu
J/LEB/FA8roE+VyiEbO7f1rL33JDnQ4z3IqevSlz3pTcvp50aLDh7zMwLKrvh5WU
lnruLeOx7p+fIoIzA6TkMcAMWZo2N5RpSzk7LepRc/TKIatXz+VD+IeAV+SjfdVF
iAZfLZTdl2ZNkeyg/nNBrQWKF3/3QNL0TR7OKK23HlUutwdu152qVO2/uUDg8t0d
XObrmfDSoYjNSdARkLo1ZYwLSgewQXraR/TnyyliXD//Xlw0pBJ9Z1DO/mDiTG/k
DMWXbkhazG46Ul+zW3MtLTgrci5bonKEbg0GKjpKI+0u4ZUqr5s3ezDkTRMfwv8Z
x8K+jOidLw6p9x/5IQ6d
=lib8
-----END PGP SIGNATURE-----


More information about the freebsd-stable mailing list