Remove empty USB section for now
[ikiwiki.git] / release22 / index.mdwn
1 # DragonFly Release 2.2 - 17 February 2009
2
3 The DragonFly 2.2 release is here! The HAMMER filesystem is considered production-ready in this release; It was first released in July 2008.  The 2.2 release represents major stability improvements across the board, new drivers, much better pkgsrc support and integration, and a brand new release infrastructure with multiple target options.
4
5 Three release options are now available:  Our bare-bones CD ISO, a DVD ISO which includes a fully operational X environment, and a bare-bones bootable USB disk-key image (less then 512M).
6
7 ## Availability
8
9 The release ISO images should be available on most of the [[mirrors|mirrors]]. If the ISO is not available on a certain mirror, please try another one or download it from the DragonFly FTP server.
10
11 ### MD5 sums
12
13 * MD5 (dfly-2.2.0_REL.iso) =3b8c2bba722db02eac76776fe40f3632
14 * MD5 (dfly-gui-2.2.0_REL.iso) = d41d8cd98f00b204e9800998ecf8427e
15 * MD5 (dfly-img-2.2.0_REL.img) = 06c5850ab4c9ca3c19e6b993b7ac32b4
16 * MD5 (dfly-2.2.0_REL.iso.gz) = 159765a8fd685b6104455dd0a167bc2b
17 * MD5 (dfly-gui-2.2.0_REL.iso.gz) = 08699d909e41b7b1e9184ef8242e0615
18 * MD5 (dfly-img-2.2.0_REL.img.gz) = 390068595ed08fb9021c123915d66d79
19
20 ### pkgsrc packages
21
22 We offer over 7300 pre-built [pkgsrc](http://www.pkgsrc.org) packages for this release.   The [pkg_radd(1)](http://leaf.dragonflybsd.org/cgi/web-man?command=pkg_radd&section=ANY) utility may be used to download pre-built binary packages.  By default this script will query the main package site for a random redirect to one of our mirrors.  The path can be overridden by setting BINPKG_SITES in /etc/settings.conf.
23
24 To get a list of all packages, let [pkg_search(1)](http://leaf.dragonflybsd.org/cgi/web-man?command=pkg_search&section=ANY) download the summary file for that release:
25
26     # pkg_search -d
27
28 ## DragonFly 2.2.0 Release Notes
29
30 ### Release Improvements
31 * A new DVD ISO release image is now available, in addition to the CD release.
32 * The new DVD release has a full X environment ready-to-go and many packages pre-installed.
33 * A full pkgsrc tar is now available on the CD/DVD in /usr.
34 * Full sources tar now available on the DVD (kernel sources only on the CD), in /usr.
35 * The nrelease build now trivializes package selection for people creating customized releases.
36 * The installer is now able to create a HAMMER filesystem setup.
37
38 ### Kernel changes
39 * First step towards AMD64 support (done by Jordan Gordeev during the Google Summer of Code 2008).
40 * The system control *intr_mpsafe* is enabled by default.
41 * Move <tt>/kernel</tt> to <tt>/boot/kernel</tt> and <tt>/modules</tt> to <tt>/boot/modules</tt>.
42 * Add RFC3542 support (done by Dashu Huang during the Google Summer of Code 2008).
43 * Add HW checksum support to the loopback interface, which doubles performance.
44 * acpi_cpu(4) update. It's now possible to use higher (lower power usage) C states than C1 in modern (multicore) CPUs.
45 * First steps to use network threads without the Big Giant Lock (this feature is considered experimental).
46 * Fixed CVE-2008-2476 IPv6 security issue with modified patches from NetBSD.
47 * <tt>bridge_input</tt> works now in parallel.
48 * Fix bugs in dealing with low-memory situations when the system has run out of swap or has no swap.
49 * Major rewrite of usched_bsd4 and related support logic, plus additional improvements to the LWKT scheduler.
50 * Major revamping of the pageout and low-memory handling code.
51 * suser_* replaced with priv_* implementation from FreeBSD.
52
53 #### HAMMER changes
54
55 * HAMMER is now considered production-capable.  Many bug fixes and other improvements have been made.
56 * It is now possible to boot from a HAMMER-only disk.  No need for a single UFS partition for /boot.  However, for production systems we still recommend a small UFS /boot followed by swap followed by one large HAMMER partition.
57 * Add HAMMER read support to the boot loader.
58 * Now uses per-mount kmalloc pools for bulk data structures, particularly for inodes and records.
59
60 ### Hardware changes
61
62 * Add ACPI support module for IBM/Lenovo Thinkpad laptops (from FreeBSD).
63 * Add ACPI support module Asus laptops (from FreeBSD).
64 * Add acpi_video(4) - a driver for ACPI video extensions (from FreeBSD).
65 * It is possible to power down PCI devices during detach.  This should save some power when using mobile devices (from FreeBSD).
66 * Update acpi_battery(4) related code to the latest one from FreeBSD HEAD.
67 * Correctly handle Intel G33 chips and add support for G45 chips to the agp(4) driver (from FreeBSD).
68 * Fixed CVE-2008-3831. Affects the Intel G33 series and newer only.
69 * Sync ciss(4) with FreeBSD's RELENG_4 branch.
70 * Sync iir(4) with FreeBSD. This fixes disk recognition with the Intel RAID Controller SRCU42L.
71
72 #### Networking
73
74 * Add support for cards with "RealTek 8102EL PCIe 10/100baseTX" chipset.
75 * Add poling support for jme(4).
76 * Add driver for Attansic PHYs (from FreeBSD).
77 * Add ale(4) for Atheros AR8121/AR8113/AR8114 PCIe ethernet controller (from FreeBSD).
78 * Add age(4) for Attansic/Atheros L1 gigabit ethernet controller (from FreeBSD).
79
80 ### Userland changes
81
82 * The DragonFly source repositories are now maintained with [git](http://git.or.cz/) instead of CVS. See [development(7)](http://leaf.dragonflybsd.org/cgi/web-man?command=development&section=ANY) for instructions how to clone the repository.
83 * A lot of man pages were updated due to the switch to git.
84 * Add LiveDVD support to our nrelease framework. (done by Louisa Luciani during the Google Summer of Code 2008).
85 * Enhance the DragonFly Mail Agent (done by Max Lindner during the Google Summer of Code 2008).
86 * Add a new multi-player terminal game: hunt.
87 * Bring in the devinfo(3) library and devinfo(8) utility from FreeBSD. The utility and library can be used to view the internal device hierarchy.
88 * Add devctl(4) and devd(8) from FreeBSD and enable related support in acpi_thinkpad(4).
89 * Update sensorsd(8) to the latest version from OpenBSD (October 2008).
90 * Sync libc/stdtime and zdump(8)/zic(8) with tzcode2008h from elsie.
91 * Symlink <tt>/dev/dsp</tt> to <tt>/dev/audio</tt> to preserve compatibility with older programs (all pkgsrc apps by default up to 2008Q3).
92 * A new daily periodic script cleans up all HAMMER volumes at night.
93 * Sync libusbhid with other BSDs. Sync usbhidctl with FreeBSD.
94 * Add ftw(), nftw(), associated header files and documentation.
95 * Fixed hundreds of warnings in various userland tools.
96 * i486 is now the default architecture for gcc(1).
97 * dntpd: Can now connect to NTP servers with IPv6 addresses.
98 * dntpd: Fix hang in dntpd startup when network down.
99 * Use BIND's resolver in libc.
100 * Add nsswitch.conf(5) support and add the Name Service Cache Daemon nscd(8) from FreeBSD.
101 * Import several pam_* modules from FreeBSD.
102 * Several bugs in the installer were fixed.
103 * nrelease: Additional to the ISO generation, nrelease can now generate an USB stick image.
104 * nrelease: It is now possible to build chosen pkgsrc packages in a chroot.
105 * telnetd: filter potentially dangerous environment variables passed from telnet client.
106
107 ### Removals
108
109 * Removed the ISC DHCP server and client.  **NOTE**: If you install DragonFly 2.2 from the live CD, you already have a pkgsrc version of the DHCP server installed.  If you update from a previous version, you have to install the pkgsrc version manually.
110 * Remove rexecd(8).
111 * Remove libskey(3), it is replaced by libopie.
112 * Remove ISA part of sr(4).
113 * Remove ISA network device cx(4).
114
115 ### Contributed Software
116
117 * Bring in the privilege separation ready DHCP client from OpenBSD.
118 * Bring in pam_passwdqc from the Openwall project.
119 * Update OpenPAM to Hydrangea.
120 * Update OpenSSH to version 5.1p1.
121 * Update OpenSSL to version 0.9.8j.
122 * Sync zoneinfo database with tzdata2009b.