diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-12-05 21:53:07 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-12-16 15:04:07 +0100 |
commit | c874dea8a2b415f1c8f92e6a653999884bf3fa02 (patch) | |
tree | 2675c4f961c0a158ea42860700f4d6ab07bfe87f /target/device/Atmel/atstk1005/target_skeleton/etc/mdev.conf | |
parent | 0fabb345a785dffe7bd91536c81c8ef54eb8ed43 (diff) | |
download | buildroot-novena-c874dea8a2b415f1c8f92e6a653999884bf3fa02.tar.gz buildroot-novena-c874dea8a2b415f1c8f92e6a653999884bf3fa02.zip |
board: remove atstk1005_defconfig
Neither the kernel nor U-Boot have support for a 1005 board, so let's
get rid of this board configuration, the corresponding target
skeleton, kernel and busybox configuration and device table.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'target/device/Atmel/atstk1005/target_skeleton/etc/mdev.conf')
-rw-r--r-- | target/device/Atmel/atstk1005/target_skeleton/etc/mdev.conf | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/target/device/Atmel/atstk1005/target_skeleton/etc/mdev.conf b/target/device/Atmel/atstk1005/target_skeleton/etc/mdev.conf deleted file mode 100644 index 046d0d40a..000000000 --- a/target/device/Atmel/atstk1005/target_skeleton/etc/mdev.conf +++ /dev/null @@ -1,49 +0,0 @@ -# mdev.conf for ATSTK1000 -# -# Syntax: -# <regexp> <UID>:<GID> <PERM> [{@,$,*} <CMD>] -# @: run <CMD> after creating -# $: run <CMD> before removal -# *: like @ and $ at the same time -# <CMD> is run inside /dev using system() - -full 0:0 666 -null 0:0 777 -zero 0:0 666 - -random 0:0 444 -urandom 0:0 444 - -console 0:5 0600 -kmem 0:9 000 -mem 0:9 0640 -ptmx 0:5 0660 - -sda.* 0:6 0660 -sdb.* 0:6 0660 -hda.* 0:6 0660 -hdb.* 0:6 0660 -mtd.* 0:6 0660 -mmc.* 0:6 0660 - -# Move input devices to input directory -event.* 0:0 0660 @(mkdir -p input&&mv $MDEV input) -mice 0:0 0660 @(mkdir -p input&&mv $MDEV input) -mouse.* 0:0 0660 @(mkdir -p input&&mv $MDEV input) - -# Move sound devices to sound directory -pcm.* 0:101 0660 @(mkdir -p snd&&mv $MDEV snd) -seq 0:101 0660 @(mkdir -p snd&&mv $MDEV snd) -timer 0:101 0660 @(mkdir -p snd&&mv $MDEV snd) -control.* 0:101 0660 @(mkdir -p snd&&mv $MDEV snd) - -tty 0:5 0660 -tty0.* 0:5 0660 -tty1.* 0:5 0660 -tty2.* 0:5 0660 -tty3.* 0:5 0660 -tty4.* 0:5 0660 -tty5.* 0:5 0660 -tty6.* 0:5 0660 - -ttyS.* 0:20 640 |