source: udev/remove_floppy_devices.sh @ 134ba96

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 134ba96 was 7e161ea, checked in by Jim Gifford <clfs@…>, 18 years ago

r833@server (orig r831): jim | 2005-12-05 10:42:24 -0800
Added: udev package for Cross-LFS. Work in Progress

  • Property mode set to 100755
File size: 420 bytes
Line 
1#!/bin/sh
2########################################################################
3#
4# Description : remove_floppy_devices
5#
6# Authors     : Based on Open Suse Udev Rules
7#               kay.sievers@suse.de
8#
9# Adapted to  : Jim Gifford
10# LFS
11#
12# Version     : 00.00
13#
14# Notes       :
15#
16########################################################################
17
18fdname=$1
19
20for dev in /dev/${fdname}*; do
21        rm -f $dev
22done
Note: See TracBrowser for help on using the repository browser.