| 1 |
Name: MAKEDEV
|
| 2 |
Version: 3.24
|
| 3 |
Release: 4
|
| 4 |
Group: System Environment/Base
|
| 5 |
License: GPLv2
|
| 6 |
# This is a Red Hat maintained package which is specific to
|
| 7 |
# our distribution. Thus the source is only available from
|
| 8 |
# within this srpm.
|
| 9 |
Source: MAKEDEV-%{version}-1.tar.gz
|
| 10 |
Summary: A program used for creating device files in /dev
|
| 11 |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
| 12 |
BuildRequires: libselinux-devel
|
| 13 |
URL: http://www.lanana.org/docs/device-list/
|
| 14 |
Requires(pre): shadow-utils, /usr/bin/getent
|
| 15 |
|
| 16 |
%description
|
| 17 |
This package contains the MAKEDEV program, which makes it easier to create
|
| 18 |
and maintain the files in the /dev directory. /dev directory files
|
| 19 |
correspond to a particular device supported by Linux (serial or printer
|
| 20 |
ports, scanners, sound cards, tape drives, CD-ROM drives, hard drives,
|
| 21 |
etc.) and interface with the drivers in the kernel.
|
| 22 |
|
| 23 |
You should install the MAKEDEV package because the MAKEDEV utility makes
|
| 24 |
it easy to manage the /dev directory device files.
|
| 25 |
|
| 26 |
%prep
|
| 27 |
%setup -q
|
| 28 |
|
| 29 |
%build
|
| 30 |
make OPTFLAGS="$RPM_OPT_FLAGS" SELINUX=1
|
| 31 |
|
| 32 |
%install
|
| 33 |
make install DESTDIR=$RPM_BUILD_ROOT devdir=/dev makedevdir=/sbin
|
| 34 |
rm -f $RPM_BUILD_ROOT/dev/MAKEDEV
|
| 35 |
|
| 36 |
%clean
|
| 37 |
rm -fr $RPM_BUILD_ROOT
|
| 38 |
|
| 39 |
%pre
|
| 40 |
# Add the floppy group and the vcsa user.
|
| 41 |
getent group floppy >/dev/null || groupadd -g 19 -r floppy
|
| 42 |
getent passwd vcsa >/dev/null || \
|
| 43 |
useradd -r -d /dev -s /sbin/nologin -u 69 \
|
| 44 |
-c "virtual console memory owner" vcsa
|
| 45 |
exit 0
|
| 46 |
|
| 47 |
%files
|
| 48 |
%defattr(-,root,root)
|
| 49 |
%doc COPYING devices-2.6+.txt
|
| 50 |
%{_mandir}/man8/*
|
| 51 |
%{_sbindir}/mksock
|
| 52 |
/sbin/MAKEDEV
|
| 53 |
%config(noreplace) %{_sysconfdir}/makedev.d
|
| 54 |
|
| 55 |
%changelog
|
| 56 |
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.24-4
|
| 57 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
| 58 |
|
| 59 |
* Sun Mar 08 2009 Robert Scheck <robert@fedoraproject.org> 3.24-3
|
| 60 |
- Hardcoded temporarily the release tag in package source tag
|
| 61 |
|
| 62 |
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.24-2
|
| 63 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
| 64 |
|
| 65 |
* Wed Oct 22 2008 Chris Lumens <clumens@redhat.com> 3.24-1
|
| 66 |
- Fix speed up patch (jakub, #466485).
|
| 67 |
|
| 68 |
* Thu Oct 09 2008 Dave Airlie <airlied@redhat.com> 3.23-7
|
| 69 |
- Add bootup speed up patch from Jakub
|
| 70 |
|
| 71 |
* Fri Sep 19 2008 Dave Airlie <airlied@redhat.com> 3.23-6
|
| 72 |
- make it boot faster by renaming a bunch of 00 files into a better order
|
| 73 |
|
| 74 |
* Mon Jun 16 2008 Jesse Keating <jkeating@redhat.com> - 3.23-5
|
| 75 |
- Make sure we have getent installed for our %pre section.
|
| 76 |
|
| 77 |
* Mon Mar 03 2008 Chris Lumens <clumens@redhat.com> 3.23-4
|
| 78 |
- Change license to GPLv2 only.
|
| 79 |
- minor cleanups for merge review (Todd Zullinger <tmz@pobox.com>):
|
| 80 |
- rpmlint warnings fixed:
|
| 81 |
- buildprereq and prereq use
|
| 82 |
- quoted macros in %%changelog
|
| 83 |
- summary-ended-with-dot
|
| 84 |
- create vcsa user and floppy group according to packaging guidelines
|
| 85 |
(Packaging/UsersAndGroups)
|
| 86 |
- note that we are upstream for MAKEDEV above the source tag
|
| 87 |
- bring BuildRoot tag in line with the packaging guidelines
|
| 88 |
- remove grep and mktemp from Require
|
| 89 |
|
| 90 |
* Mon Feb 25 2008 Jeremy Katz <katzj@redhat.com> - 3.23-3
|
| 91 |
- Add fix to build with gcc 4.3
|
| 92 |
|
| 93 |
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.23-2.2
|
| 94 |
- Autorebuild for GCC 4.3
|
| 95 |
|
| 96 |
* Mon Jul 17 2006 Nalin Dahyabhai <nalin@redhat.com> - 3.23-1.2
|
| 97 |
- rebuild
|
| 98 |
|
| 99 |
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.23-1.1
|
| 100 |
- rebuild
|
| 101 |
|
| 102 |
* Tue Jun 20 2006 Nalin Dahyabhai <nalin@redhat.com> 3.23-1
|
| 103 |
- update to 15 May devices-2.6+.txt:
|
| 104 |
- remove pktcdvd*
|
| 105 |
- add ttyJ0
|
| 106 |
- add ptlsec
|
| 107 |
|
| 108 |
* Thu May 4 2006 Nalin Dahyabhai <nalin@redhat.com> 3.22-1
|
| 109 |
- update to 1 March devices-2.6+.txt:
|
| 110 |
- add ttyEQ*
|
| 111 |
|
| 112 |
* Mon Feb 13 2006 Nalin Dahyabhai <nalin@redhat.com> 3.21-3
|
| 113 |
- rebuild
|
| 114 |
|
| 115 |
* Tue Feb 7 2006 Nalin Dahyabhai <nalin@redhat.com> 3.21-2
|
| 116 |
- rebuild
|
| 117 |
|
| 118 |
* Thu Jan 26 2006 Nalin Dahyabhai <nalin@redhat.com> 3.21-1
|
| 119 |
- update to 4 January devices-2.6+.txt:
|
| 120 |
- add ttyNX*
|
| 121 |
- document how conflicting rules are resolved
|
| 122 |
- batch rename configuration files to allow third-parties to override rules
|
| 123 |
more dependably
|
| 124 |
|
| 125 |
* Thu Dec 22 2005 Nalin Dahyabhai <nalin@redhat.com> 3.20-3
|
| 126 |
- actually get the name of the file right
|
| 127 |
|
| 128 |
* Thu Dec 22 2005 Nalin Dahyabhai <nalin@redhat.com> 3.20-2
|
| 129 |
- actually include the devices.txt file which corresponds to the 2.6 kernel
|
| 130 |
|
| 131 |
* Fri Dec 16 2005 Nalin Dahyabhai <nalin@redhat.com> 3.20-1
|
| 132 |
- update to 28 November devices-2.6+.txt:
|
| 133 |
- rename ttyUB* to rfcomm*
|
| 134 |
- rename cuub* to curf*
|
| 135 |
- add ttyPSC*
|
| 136 |
- add ttyAT*
|
| 137 |
- add rfd*
|
| 138 |
|
| 139 |
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
| 140 |
- rebuilt
|
| 141 |
|
| 142 |
* Sun Jul 31 2005 Florian La Roche <laroche@redhat.com>
|
| 143 |
- remove /dev/MAKEDEV to build with newest rpm
|
| 144 |
|
| 145 |
* Thu Jul 21 2005 Nalin Dahyabhai <nalin@redhat.com> 3.19-3
|
| 146 |
- rebuild
|
| 147 |
|
| 148 |
* Thu Jul 21 2005 Nalin Dahyabhai <nalin@redhat.com> 3.19-2
|
| 149 |
- move usb-specific config file out, go with the mainline devices-2.6+.txt file
|
| 150 |
- update to 12 May devices-2.6+.txt:
|
| 151 |
- add usb/legousbtower
|
| 152 |
- add xvd
|
| 153 |
- rename ttyIOC4 to ttyIOC
|
| 154 |
- add 32 more ttyIOC nodes
|
| 155 |
- add ttySIOC
|
| 156 |
|
| 157 |
* Thu Mar 17 2005 Nalin Dahyabhai <nalin@redhat.com> 3.19-1
|
| 158 |
- skip over subdirectories in /etc/makedev.d (#150766) instead of spitting
|
| 159 |
out an error (or warning, if -i was used) and quitting
|
| 160 |
|
| 161 |
* Tue Mar 15 2005 Nalin Dahyabhai <nalin@redhat.com> 3.18-1
|
| 162 |
- update to 10 February devices-2.6+.txt:
|
| 163 |
- remove vtx
|
| 164 |
- remove vttunner
|
| 165 |
- add mga_vid
|
| 166 |
- add infiniband
|
| 167 |
- add biometrics
|
| 168 |
- add ttyVR,cuvr
|
| 169 |
- add ipath
|
| 170 |
- restruct symlink target creation to exact (-X) mode
|
| 171 |
|
| 172 |
* Thu Jan 20 2005 Nalin Dahyabhai <nalin@redhat.com> 3.17-1
|
| 173 |
- update to 7 January 2005 devices.txt:
|
| 174 |
- add midishare
|
| 175 |
- move cpu/*/microcode to cpu/microcode to match udev's behavior (#144887)
|
| 176 |
- create targets of symlinks if they don't exist
|
| 177 |
|
| 178 |
* Tue Dec 21 2004 Nalin Dahyabhai <nalin@redhat.com> 3.16-3
|
| 179 |
- raise number of loop devices from 16 to 256 (Kenneth Lee)
|
| 180 |
- create 'vmware' alias for vnet,vmnet,vmmon devices
|
| 181 |
- change vmnet->vnet to vmnet0->vnet0, so that it isn't left dangling
|
| 182 |
|
| 183 |
* Wed Dec 8 2004 Nalin Dahyabhai <nalin@redhat.com> 3.16-2
|
| 184 |
- remove ataraid devices (#140175)
|
| 185 |
|
| 186 |
* Mon Nov 29 2004 Nalin Dahyabhai <nalin@redhat.com> 3.16-1
|
| 187 |
- allow devices to be specified either as "device" or "devdir"[/]"device"
|
| 188 |
- update to 22 November 2004 devices.txt:
|
| 189 |
- add fuse
|
| 190 |
- add ttyCPM,cucpm
|
| 191 |
- add ttyIOC4,cuioc4
|
| 192 |
- rename user-mode block devices to avoid conflict with ub block device
|
| 193 |
|
| 194 |
* Fri Nov 12 2004 Nalin Dahyabhai <nalin@redhat.com> 3.15-3
|
| 195 |
- rebuild
|
| 196 |
|
| 197 |
* Fri Nov 12 2004 Nalin Dahyabhai <nalin@redhat.com> 3.15-2
|
| 198 |
- rebuild
|
| 199 |
|
| 200 |
* Fri Nov 12 2004 Nalin Dahyabhai <nalin@redhat.com> 3.15-1
|
| 201 |
- set the file creation context for symlinks as well (#138897)
|
| 202 |
- verify the file context for symlinks as well
|
| 203 |
- use lgetfilecon instead of getfilecon so that we don't chase symlinks when
|
| 204 |
determining the current context of a file (Dan Walsh)
|
| 205 |
- update to 27 October 2004 devices.txt:
|
| 206 |
- remove msd* devices
|
| 207 |
- add ub* devices
|
| 208 |
- comment out ubd* (98/0) devices for now, would conflict with a ub block
|
| 209 |
device (180/24)
|
| 210 |
- handle symlink-already-exists errors
|
| 211 |
|
| 212 |
* Tue Oct 19 2004 Nalin Dahyabhai <nalin@redhat.com> 3.14-1
|
| 213 |
- update to 20 September 2004 devices.txt:
|
| 214 |
- add ttyMM devices (no callout devices)
|
| 215 |
- move inftl* devices from major 94 to major 96
|
| 216 |
- move msd* devices from major 96 to major 95
|
| 217 |
- move dasd* devices from major 95 to major 94
|
| 218 |
- drop the number of vnet nodes from 16 to 9
|
| 219 |
- make vmnet* a link to vnet*
|
| 220 |
- fix -n, -v
|
| 221 |
|
| 222 |
* Tue Sep 14 2004 Nalin Dahyabhai <nalin@redhat.com> 3.13-1
|
| 223 |
- excise all architecture-specific logic and configuration data -- udev knows
|
| 224 |
no arch-specific details, so they should be irrelevant now
|
| 225 |
- remove build conflicts on older RPM, unnecessary now that dev is gone
|
| 226 |
- remove dev's %%post fstab munging
|
| 227 |
- add a short-circuit test for the common non-match cases
|
| 228 |
|
| 229 |
* Tue Sep 14 2004 Jeremy Katz <katzj@redhat.com> - 3.12.2-1
|
| 230 |
- add the vcsa user and floppy group in the MAKEDEV package now (#132595)
|
| 231 |
|
| 232 |
* Mon Sep 13 2004 Nalin Dahyabhai <nalin@redhat.com> 3.12.1-1
|
| 233 |
- nuke the "dev" subpackage
|
| 234 |
|
| 235 |
* Tue Sep 7 2004 Nalin Dahyabhai <nalin@redhat.com> 3.12-1
|
| 236 |
- add a -a (alwayscreate) flag, to skip checking if the device node is already
|
| 237 |
present with the desired permissions/ownership/context
|
| 238 |
- add a -u (udev permissions) flag, to spit out udev-style permissions settings
|
| 239 |
for whatever nodes we would be creating
|
| 240 |
|
| 241 |
* Mon Sep 6 2004 Nalin Dahyabhai <nalin@redhat.com>
|
| 242 |
- add a context-directory flag, for using contexts assigned to devices created
|
| 243 |
in the -d directory look like they would if it was the -D directory
|
| 244 |
- create intermediate subdirectories in exact (-x) mode
|
| 245 |
|
| 246 |
* Sat Sep 4 2004 Nalin Dahyabhai <nalin@redhat.com>
|
| 247 |
- don't even try to reset the default file creation context if SELinux
|
| 248 |
is disabled (#131776)
|
| 249 |
|
| 250 |
* Thu Sep 2 2004 Nalin Dahyabhai <nalin@redhat.com>
|
| 251 |
- add usb/lcd, usb/brlvgr* from current usb.devices.txt (#69729); drops the
|
| 252 |
number of dabusb devices from 16 to 4
|
| 253 |
|
| 254 |
* Thu Sep 2 2004 Nalin Dahyabhai <nalin@redhat.com> 3.11-1
|
| 255 |
- add an exact (-x) flag, for creating exactly one device at a time
|
| 256 |
|
| 257 |
* Wed Sep 1 2004 Nalin Dahyabhai <nalin@redhat.com> 3.10-1
|
| 258 |
- set SELinux contexts when creating device nodes, sockets, and intermediate
|
| 259 |
directories
|
| 260 |
- turn on SELinux support at build-time
|
| 261 |
|
| 262 |
* Tue Aug 31 2004 Nalin Dahyabhai <nalin@redhat.com> 3.9.2-1
|
| 263 |
- remove the MAKEDEV symlink from /dev, which allows removal of the %%pre
|
| 264 |
scriptlet (#131075)
|
| 265 |
- make storage devices group-read-only (#110197)
|
| 266 |
|
| 267 |
* Mon Aug 30 2004 Nalin Dahyabhai <nalin@redhat.com>
|
| 268 |
- update to 30 August 2004 devices.txt:
|
| 269 |
- give ttySMX callout devices non-conflicting names
|
| 270 |
- point man page to /sbin instead of /dev
|
| 271 |
|
| 272 |
* Thu Aug 26 2004 Nalin Dahyabhai <nalin@redhat.com> 3.9.1-1
|
| 273 |
- update to 04 August 2004 devices.txt:
|
| 274 |
- rename xfs0 to nnpfs0
|
| 275 |
- replace solnp*/solnpctl* with ica*
|
| 276 |
- add emd, hpet, drbd, ttySMX
|
| 277 |
- fix ieee1394/dv/PAL/out
|
| 278 |
|
| 279 |
* Wed Aug 25 2004 Nalin Dahyabhai <nalin@redhat.com> 3.9-1
|
| 280 |
- 3.8.4 should have been a major revision
|
| 281 |
- remove /dev/kmem (#117692)
|
| 282 |
- teach MAKEDEV about dv1394 stuff (#127061)
|
| 283 |
- make rfcomm0 and rfcomm1 symlinks to ttyUB0 and ttyUB1, respectively (#88802)
|
| 284 |
- mksock: print usage information in cases of unrecognized arguments (#105440)
|
| 285 |
|
| 286 |
* Wed Aug 25 2004 Nalin Dahyabhai <nalin@redhat.com> 3.8.4-1
|
| 287 |
- move MAKEDEV to /sbin with a symlink from /dev (#116009)
|
| 288 |
- don't bother looking up the owners of symlinks, we don't use them
|
| 289 |
|
| 290 |
* Thu Jul 29 2004 Nalin Dahyabhai <nalin@redhat.com> 3.8.3-1
|
| 291 |
- use the correct permissions on /dev/ttySG0 and /dev/cusg0
|
| 292 |
|
| 293 |
* Wed Jul 28 2004 Nalin Dahyabhai <nalin@redhat.com> 3.8.2-1
|
| 294 |
- create /dev/ttySG0 and /dev/cusg0 (Erik Jacobson)
|
| 295 |
|
| 296 |
* Thu Jun 24 2004 Nalin Dahyabhai <nalin@redhat.com> 3.8.1-1
|
| 297 |
- create sx8 device nodes
|
| 298 |
|
| 299 |
* Mon Jun 21 2004 Nalin Dahyabhai <nalin@redhat.com> 3.8-1
|
| 300 |
- rename /dev/carmel to /dev/sx8 (Jeff Garzik)
|
| 301 |
|
| 302 |
* Tue Jun 15 2004 Nalin Dahyabhai <nalin@redhat.com> 3.7-3
|
| 303 |
- hvsi* should be on ppc/ppc64, not s390 (David Howells)
|
| 304 |
|
| 305 |
* Mon Jun 14 2004 Nalin Dahyabhai <nalin@redhat.com> 3.7-2
|
| 306 |
- add hvsi0 and hvsi1 devices on s390 (David Howells)
|
| 307 |
|
| 308 |
* Wed Jun 09 2004 Karsten Hopp <karsten@redhat.de> 3.7-1
|
| 309 |
- sort devices for a better overview (s390)
|
| 310 |
- add scsi devices for zfcp disks (s390)
|
| 311 |
|
| 312 |
* Sun May 30 2004 Florian La Roche <Florian.LaRoche@redhat.de>
|
| 313 |
- simplify the pre script for MAKEDEV/dev
|
| 314 |
|
| 315 |
* Wed May 5 2004 Nalin Dahyabhai <nalin@redhat.com> 3.6-1
|
| 316 |
- Cleanups: don't require that the owning user or group exist when invoked
|
| 317 |
with -M, because we don't care.
|
| 318 |
|
| 319 |
* Wed May 5 2004 Nalin Dahyabhai <nalin@redhat.com> 3.5-1
|
| 320 |
- Fix crashes when users and groups specified as owners in configuration files
|
| 321 |
don't exist (Jim Gifford).
|
| 322 |
- Create /dev/adb and /dev/pmu devices (#119265)
|
| 323 |
|
| 324 |
* Mon Mar 29 2004 Nalin Dahyabhai <nalin@redhat.com> 3.4-1
|
| 325 |
- Bump version for kernel 2.6.
|
| 326 |
- Create /dev/mce_log on x86_64.
|
| 327 |
- Create /dev/kmsg everywhere.
|
| 328 |
- Create /dev/carmel disk nodes.
|
| 329 |
- Make vsys a symlink to aio (was renamed to aio).
|
| 330 |
|
| 331 |
* Wed Mar 10 2004 Phil Knirsch <pknirsch@redhat.com> 3.3.14-1
|
| 332 |
- Rebuilt for RHEL3 U2.
|
| 333 |
|
| 334 |
* Mon Feb 23 2004 Nalin Dahyabhai <nalin@redhat.com> 3.3.13-1
|
| 335 |
- Make MAKEDEV use ":" to separate user and group names in output created when
|
| 336 |
invoked with the -S flag (patch by Tim Waugh).
|
| 337 |
|
| 338 |
* Wed Jan 21 2004 Phil Knirsch <pknirsch@redhat.com> 3.3.12-1
|
| 339 |
- Added missing scsi devices for s390(x).
|
| 340 |
|
| 341 |
* Tue Jan 20 2004 Phil Knirsch <pknirsch@redhat.com> 3.3.11-1
|
| 342 |
- Added back the /dev/tty* files on s390(x), needed for expect.
|
| 343 |
|
| 344 |
* Mon Jan 12 2004 Nalin Dahyabhai <nalin@redhat.com> 3.3.10-1
|
| 345 |
- raise the default number of sg devices from 32 to 256 (kernel has no
|
| 346 |
hard-coded limit) (#104816)
|
| 347 |
|
| 348 |
* Thu Dec 18 2003 Than Ngo <than@redhat.com> 3.3.9-2
|
| 349 |
- add the correct alsa device name
|
| 350 |
|
| 351 |
* Fri Dec 12 2003 Bill Nottingham <notting@redhat.com> 3.3.9-1
|
| 352 |
- ALSA device nodes
|
| 353 |
|
| 354 |
* Mon Sep 15 2003 Nalin Dahyabhai <nalin@redhat.com> 3.3.8-2
|
| 355 |
- rebuild
|
| 356 |
|
| 357 |
* Mon Sep 15 2003 Nalin Dahyabhai <nalin@redhat.com> 3.3.8-1
|
| 358 |
- apply patch from Matt Wilson to raise the number of raw devices from 128
|
| 359 |
to 255
|
| 360 |
|
| 361 |
* Fri Aug 22 2003 Bill Nottingham <notting@redhat.com> 3.3.7-1
|
| 362 |
- make /dev/hvc0 a real file
|
| 363 |
|
| 364 |
* Fri Aug 15 2003 Nalin Dahyabhai <nalin@redhat.com> 3.3.6-2
|
| 365 |
- rebuild
|
| 366 |
|
| 367 |
* Fri Aug 15 2003 Nalin Dahyabhai <nalin@redhat.com> 3.3.6-1
|
| 368 |
- apply patch from Matt Wilson to make /dev/hvc0 a link to iseries/vtty0
|
| 369 |
- include the nvram and hvc0 devices on ppc/ppc64
|
| 370 |
|
| 371 |
* Tue Jun 3 2003 Nalin Dahyabhai <nalin@redhat.com> 3.3.5-2
|
| 372 |
- rebuild
|
| 373 |
|
| 374 |
* Tue Jun 3 2003 Nalin Dahyabhai <nalin@redhat.com> 3.3.5-1
|
| 375 |
- finish update to latest devices.txt
|
| 376 |
moves /dev/3270/tty* from major 228 to 227
|
| 377 |
moves /dev/3270/tub* from major 227 to 228
|
| 378 |
|
| 379 |
* Tue May 13 2003 Nalin Dahyabhai <nalin@redhat.com> 3.3.4-1
|
| 380 |
- update to latest devices.txt (renames smapi to thinkpad/thinkpad, adds
|
| 381 |
systrace, tpm, pps, etherd/, spi/, usb/usblcd, usb/cpad0)
|
| 382 |
|
| 383 |
* Mon Apr 28 2003 Nalin Dahyabhai <nalin@redhat.com> 3.3.3-1
|
| 384 |
- replace libraw1394 config file with newer information from
|
| 385 |
www.linux1394.org (#88170)
|
| 386 |
|
| 387 |
* Sat Feb 01 2003 Florian La Roche <Florian.LaRoche@redhat.de>
|
| 388 |
- sanitize dev rpm scripts
|
| 389 |
|
| 390 |
* Thu Jan 30 2003 Phil Knirsch <pknirsch@redhat.com> 3.3.2-5
|
| 391 |
- Removed too many tty devices for s390(x). Fixed.
|
| 392 |
- Removed mdsp* and logicalco devices for s390(x).
|
| 393 |
|
| 394 |
* Wed Jan 29 2003 Phil Knirsch <pknirsch@redhat.com> 3.3.2-3
|
| 395 |
- Updated number of dasd devices we create for s390(x) (64 now).
|
| 396 |
- Removed all unecessary /dev/tty?.? entries for s390(x).
|
| 397 |
|
| 398 |
* Mon Jan 27 2003 Nalin Dahyabhai <nalin@redhat.com> 3.3.2-2
|
| 399 |
- rebuild
|
| 400 |
|
| 401 |
* Wed Jan 8 2003 Nalin Dahyabhai <nalin@redhat.com> 3.3.2-1
|
| 402 |
- update to latest devices.txt (renames intel_rng to hwrng and adds ttyB*)
|
| 403 |
|
| 404 |
* Tue Sep 17 2002 Guy Streeter <streeter@redhat.com>
|
| 405 |
- include the /dev/iseries devices on ppc64
|
| 406 |
|
| 407 |
* Fri Aug 30 2002 Nalin Dahyabhai <nalin@redhat.com> 3.3.1-2
|
| 408 |
- build nosst devices (#72914)
|
| 409 |
|
| 410 |
* Tue Jul 09 2002 Nalin Dahyabhai <nalin@redhat.com> 3.3.1-1
|
| 411 |
- build the tunnelling device (/dev/net/tun)
|
| 412 |
- add configuration for libraw1394 (#67203)
|
| 413 |
|
| 414 |
* Tue Jul 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
| 415 |
- fix SPARC build, patch from Jakub Jelinek <jakub@redhat.com>
|
| 416 |
|
| 417 |
* Tue May 28 2002 Nalin Dahyabhai <nalin@redhat.com> 3.3-7
|
| 418 |
- rebuild
|
| 419 |
|
| 420 |
* Thu May 16 2002 Nalin Dahyabhai <nalin@redhat.com> 3.3-6
|
| 421 |
- build 32 scsi generic devices
|
| 422 |
- add cfs device used by coda
|
| 423 |
|
| 424 |
* Thu May 9 2002 Nalin Dahyabhai <nalin@redhat.com> 3.3-5
|
| 425 |
- resync with current LANANA updates, remove ibcs config file
|
| 426 |
- resync with usb device list
|
| 427 |
|
| 428 |
* Tue Apr 23 2002 Nalin Dahyabhai <nalin@redhat.com>
|
| 429 |
- resync with current LANANA updates, heads-up from John Cagle
|
| 430 |
- create kpoll and 16 scramdisk devices
|
| 431 |
|
| 432 |
* Thu Apr 11 2002 Nalin Dahyabhai <nalin@redhat.com> 3.3-4
|
| 433 |
- build the package the same way for the superuser as we did before,
|
| 434 |
preventing problems when building as root when some of the device
|
| 435 |
owners don't exist on the build host
|
| 436 |
|
| 437 |
* Thu Mar 28 2002 Nalin Dahyabhai <nalin@redhat.com> 3.3-3
|
| 438 |
- set the /dev/vcs* devices to be owned by the vcsa user, and create the
|
| 439 |
vcsa user
|
| 440 |
|
| 441 |
* Tue Mar 19 2002 Nalin Dahyabhai <nalin@redhat.com> 3.3-2
|
| 442 |
- rebuild
|
| 443 |
|
| 444 |
* Tue Mar 19 2002 Nalin Dahyabhai <nalin@redhat.com> 3.3-1
|
| 445 |
- handle a step of 0 when creating multiple nodes
|
| 446 |
- add /dev/cpu/*/microcode (perms 0600) to the dev package
|
| 447 |
|
| 448 |
* Thu Feb 21 2002 Nalin Dahyabhai <nalin@redhat.com> 3.2-12
|
| 449 |
- rebuild
|
| 450 |
|
| 451 |
* Thu Jan 31 2002 Nalin Dahyabhai <nalin@redhat.com> 3.2-11
|
| 452 |
- up the limit on ide devices (hda through hdt) back up from 17 to 33 -- I'm
|
| 453 |
told it works now
|
| 454 |
|
| 455 |
* Mon Jan 21 2002 Nalin Dahyabhai <nalin@redhat.com> 3.2-10
|
| 456 |
- build for Raw Hide
|
| 457 |
|
| 458 |
* Mon Jan 21 2002 Nalin Dahyabhai <nalin@redhat.com> 3.2-9
|
| 459 |
- actually create the vsys device
|
| 460 |
|
| 461 |
* Mon Jan 21 2002 Nalin Dahyabhai <nalin@redhat.com> 3.2-8
|
| 462 |
- build for Raw Hide
|
| 463 |
|
| 464 |
* Mon Jan 21 2002 Nalin Dahyabhai <nalin@redhat.com> 3.2-7
|
| 465 |
- aio/vsys rename courtesy of Ben LaHaise
|
| 466 |
|
| 467 |
* Thu Aug 30 2001 Nalin Dahyabhai <nalin@redhat.com> 3.2-6
|
| 468 |
- fix markup errors in the man page (no bug ID, reported by
|
| 469 |
esr@snark.thyrsus.com)
|
| 470 |
|
| 471 |
* Thu Aug 30 2001 Nalin Dahyabhai <nalin@redhat.com> 3.2-5
|
| 472 |
- char 10/208 is cpqphpc, not cpqphpcp (#52910)
|
| 473 |
- add compaq/ devices (#52898)
|
| 474 |
- add information about raw1394 and video1394 devices (#52736)
|
| 475 |
|
| 476 |
* Fri Aug 17 2001 Karsten Hopp <karsten@redhat.de>
|
| 477 |
- add tape390 devices
|
| 478 |
|
| 479 |
* Tue Aug 14 2001 Karsten Hopp <karsten@redhat.de>
|
| 480 |
- clean up all those ifnarch s390 clauses
|
| 481 |
|
| 482 |
* Thu Aug 2 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 483 |
- bring in line with devices.txt from 3 June 2001
|
| 484 |
- create dri devices
|
| 485 |
|
| 486 |
* Wed Jul 18 2001 Tim Powers <timp@redhat.com>
|
| 487 |
- rebuilt using new rpm that actually does %%dev correctly
|
| 488 |
|
| 489 |
* Mon Jul 16 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 490 |
- tweak the manifest handling to also build when RPM doesn't know
|
| 491 |
about them
|
| 492 |
- add a -S option to spit out shell script snippets
|
| 493 |
- only claim that we need to create a particular directory once
|
| 494 |
- fix descriptions for i2o/hdd[i-p], which were wrong
|
| 495 |
- break generic and architecture-specific sections apart in %%install
|
| 496 |
|
| 497 |
* Sun Jul 15 2001 Jeff Johnson <jbj@redhat.com>
|
| 498 |
- generate device manifest with MAKEDEV -M to build as non-root.
|
| 499 |
|
| 500 |
* Wed Jul 11 2001 Bill Nottingham <notting@redhat.com>
|
| 501 |
- add proper prereqs to dev package for %%post (#48769)
|
| 502 |
|
| 503 |
* Thu Jul 05 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
| 504 |
- disable unneeded parts of post for s390,s390x
|
| 505 |
|
| 506 |
* Sun Jul 01 2001 Karsten Hopp <karsten@redhat.de>
|
| 507 |
- S390-only changes -- added missing devices
|
| 508 |
|
| 509 |
* Fri Jun 29 2001 Karsten Hopp <karsten@redhat.de>
|
| 510 |
- added missing /dev/null on S390
|
| 511 |
|
| 512 |
* Wed Jun 27 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 513 |
- back out some changes, move documentation for dasd device numbers elsewhere
|
| 514 |
|
| 515 |
* Wed Jun 27 2001 Karsten Hopp <karsten@redhat.de>
|
| 516 |
- move 2 S390 patches into CVS, console-patch has to stay or it
|
| 517 |
would break other archs
|
| 518 |
|
| 519 |
* Tue Jun 26 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 520 |
- create the first four /dev/osst devices (#35833)
|
| 521 |
- only 7 partitions for DAC960 disks, not 8 (#31484)
|
| 522 |
- add ataraid device nodes (#44807)
|
| 523 |
- add a "raid" alias for all raid devices (#33117)
|
| 524 |
- update the man page
|
| 525 |
|
| 526 |
* Tue Jun 26 2001 Bill Nottingham <notting@redhat.com>
|
| 527 |
- add /dev/shm to fstab too
|
| 528 |
|
| 529 |
* Thu Jun 22 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 530 |
- own %%{_sysconfdir}/makedev.d in addition to files it contains
|
| 531 |
|
| 532 |
* Wed Jun 21 2001 Karsten Hopp <karsten@redhat.de>
|
| 533 |
- correct device naming and major/minor numbers on S390
|
| 534 |
|
| 535 |
* Fri Jun 8 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 536 |
- fix a bug in creation of leading directories when a format specifier is
|
| 537 |
included in the directory's name
|
| 538 |
- zero-fill the buffer before we pass it to readlink()
|
| 539 |
- don't try to create /dev/ixj*; the device isn't present in 2.4
|
| 540 |
- limit number of each device in /dev/input to 32
|
| 541 |
|
| 542 |
* Thu May 31 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 543 |
- increase the number of lp and parport devices from 3 to 8
|
| 544 |
|
| 545 |
* Thu May 24 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 546 |
- make apm devices (apm_bios)
|
| 547 |
- make fancy beeper device (beep)
|
| 548 |
|
| 549 |
* Wed Apr 25 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 550 |
- only make devices for two floppy drives instead of eight
|
| 551 |
- limit the number of cui devices to 16 instead of 64
|
| 552 |
- limit the number isdn and ippp devices to 16
|
| 553 |
- limit the number of nb devices to 32 (matches md)
|
| 554 |
- limit the number of st and nst devices to 16
|
| 555 |
|
| 556 |
* Fri Mar 23 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 557 |
- make all devices for all RAID controllers again
|
| 558 |
|
| 559 |
* Mon Mar 12 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 560 |
- make aliases for ide5 through ide9
|
| 561 |
- limit the number of console and console-related devices to 32
|
| 562 |
- run pam_console_apply in the post, if it exists
|
| 563 |
|
| 564 |
* Mon Mar 5 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 565 |
- use a file manifest
|
| 566 |
|
| 567 |
* Sat Mar 3 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 568 |
- drop the number of hdX devices from 33 to 17, on advice from Andre Hedrick
|
| 569 |
|
| 570 |
* Thu Mar 1 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 571 |
- make js0, js1, js2, js3 symlinks into /dev/input so that all programs use
|
| 572 |
the new input-core joystick driver instead of the old one
|
| 573 |
|
| 574 |
* Mon Feb 26 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 575 |
- detect devfs in the MAKEDEV %%pre, too (#26110)
|
| 576 |
- fix message in the dev %%pre (#26110)
|
| 577 |
|
| 578 |
* Fri Feb 16 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 579 |
- build the netlink device (#15785)
|
| 580 |
|
| 581 |
* Sun Feb 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
| 582 |
- merge in s390 s390x support
|
| 583 |
|
| 584 |
* Tue Feb 6 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 585 |
- fail to install if %%pre detects devfs
|
| 586 |
|
| 587 |
* Thu Jan 25 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 588 |
- create /dev in the %%pre script; installing the dev package should fixup
|
| 589 |
the permissions, and we can't redirect to /dev/null without it (#24392)
|
| 590 |
|
| 591 |
* Thu Jan 18 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 592 |
- make /dev/aio world-writable (info from Ben LeHaise)
|
| 593 |
|
| 594 |
* Wed Jan 17 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 595 |
- add device nodes using the new devices.txt for Linux 2.4.0, and check that
|
| 596 |
file into the source tree to make tracking further changes simpler
|
| 597 |
- change Copyright: GPL to License: GPL
|
| 598 |
- add a very simple substitution macro facility for specifying ownership and
|
| 599 |
permissions in a single place
|
| 600 |
- add code for creating sockets natively
|
| 601 |
- remove conflicting data for where /dev/ftape should point to
|
| 602 |
- remove all raid controller device nodes for second and additional controllers
|
| 603 |
(they can be created with MAKEDEV)
|
| 604 |
|
| 605 |
* Tue Jan 9 2001 Nalin Dahyabhai <nalin@redhat.com>
|
| 606 |
- make 32 partition devices for IDE disks instead of 16
|
| 607 |
|
| 608 |
* Tue Dec 12 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 609 |
- make some ppp devices
|
| 610 |
|
| 611 |
* Thu Oct 19 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 612 |
- change vcs0 to vcs (ditto for vcsa0)
|
| 613 |
|
| 614 |
* Tue Sep 12 2000 Bill Nottingham <notting@redhat.com>
|
| 615 |
- fixes for some sparc devices that fell out
|
| 616 |
|
| 617 |
* Thu Aug 24 2000 Florian La Roche <Florian.LaRoche@redhat.com>
|
| 618 |
- change some devices that could be used for dialing to root:uucp/0660 perms
|
| 619 |
|
| 620 |
* Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 621 |
- up the number of SCSI CD-ROM devices we know about from 8 to 32, but only
|
| 622 |
create 8 at build-time
|
| 623 |
|
| 624 |
* Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 625 |
- remove both temp files generated in the %%post (#16325)
|
| 626 |
|
| 627 |
* Mon Aug 14 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 628 |
- change the sense of sga/sg0 node/symlink stuff to match kernel docs (#16056)
|
| 629 |
|
| 630 |
* Wed Aug 9 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 631 |
- add the netlink device, and mark it as undocumented (#15785)
|
| 632 |
- add /dev/log socket as a ghost using Erik's mksocket
|
| 633 |
- add in devices that start with "m"
|
| 634 |
- change /dev/i20 to /dev/i2o
|
| 635 |
- fix a parser bug
|
| 636 |
|
| 637 |
* Tue Aug 8 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 638 |
- add cciss device nodes (#14878)
|
| 639 |
|
| 640 |
* Mon Aug 7 2000 Crutcher Dunnavant <crutcher@redhat.com>
|
| 641 |
- make the usb lp? devices group-owned by 'lp'
|
| 642 |
|
| 643 |
* Fri Jul 21 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 644 |
- make floppy disk devices group-accessible by the floppy group
|
| 645 |
|
| 646 |
* Wed Jul 19 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 647 |
- stop making bogus symlinks (#14225)
|
| 648 |
- add "console" alias for tty devices to match man page
|
| 649 |
- add "qic" alias for tape devices to match man page
|
| 650 |
|
| 651 |
* Mon Jul 17 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 652 |
- change group of the "lp" devices to "lp"
|
| 653 |
- comment out the ACSI disks, which probably shouldn't have those names
|
| 654 |
- incorporate the release number into the tarball file name
|
| 655 |
|
| 656 |
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
| 657 |
- automatic rebuild
|
| 658 |
|
| 659 |
* Mon Jul 10 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 660 |
- fix symlink creation where both the link and a target are in a subdirectory
|
| 661 |
- add efirtc in its own "ia64" control file
|
| 662 |
|
| 663 |
* Wed Jul 5 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 664 |
- add a -i flag so that I can test in a CVS checkout
|
| 665 |
- use correct IBCS compatibility device entries
|
| 666 |
- fix symlink creation so that it works as intended
|
| 667 |
|
| 668 |
* Tue Jul 4 2000 Matt Wilson <msw@redhat.com>
|
| 669 |
- moved the Prereq: /usr/sbin/groupadd from the MAKEDEV package to the
|
| 670 |
dev package
|
| 671 |
- added the %%post script to the dev package to add devpts mounting
|
| 672 |
|
| 673 |
* Sat Jul 1 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 674 |
- make the man page 644, not 755
|
| 675 |
|
| 676 |
* Mon Jun 26 2000 Florian La Roche <Florian.LaRoche@redhat.com>
|
| 677 |
- update from 8 to 16 loop devices
|
| 678 |
|
| 679 |
* Mon Jun 26 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 680 |
- add input/mice and md devices to the dev package
|
| 681 |
- limit loop devices to 16 in config files (this is a hard-coded kernel limit)
|
| 682 |
|
| 683 |
* Mon Jun 19 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 684 |
- add the "floppy" group to the system in the dev package's pre-install
|
| 685 |
|
| 686 |
* Mon Jun 11 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 687 |
- fix a typo in the devices list
|
| 688 |
- move non-standard names from linux-2.2 list to redhat list
|
| 689 |
|
| 690 |
* Sat Jun 10 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 691 |
- FHS packaging for a shiny new version
|