#!/bin/sh # # H3600 Sleeve hotplug policy agent for Linux 2.4 kernels # # Kernel NET hotplug params include: # # ACTION=%s [add or remove] # MEDIA=%s # SLOT=%d # . /etc/hotplug/hotplug.functions #DEBUG=yes export DEBUG echo "Executing $0 action=$ACTION, media=$MEDIA ($SLOT)" > /dev/console MMC_MOUNT_OPTIONS="-t auto -o sync,noatime" if [ -f /etc/sysconfig/hotplug ] ; then . /etc/sysconfig/hotplug fi case `uname -r` in 2.4*) devpath=mmc/part ;; *) devpath=mmcblk0p ;; esac if [ "$ACTION" = "add" ] ; then sleep 4 echo -n add > /dev/console for n in 1 2 3 4 ; do device=/dev/$devpath$n if [ "$n" = "1" ] ; then card=/mnt/card else card=/mnt/card$n fi [ -b $device ] || break echo " flash on $device" > /dev/console [ -d $card ] || mkdir -p $card mount $MMC_MOUNT_OPTIONS $device $card done else for card in /mnt/card*; do umount $card done fi recdp-1.x Multi-Tech CoreCDP 1.x OpenEmbedded TreeMulti-Tech Systems
summaryrefslogtreecommitdiff
path: root/packages/cpuburn/cpuburn_1.4.bb
AgeCommit message (Expand)AuthorFiles
2006-12-31remove extra whitespace at end-of-line in about 900 bb files.Rolf Leggewie1
2006-10-10Remove MAINTAINER fields from recipes, add MAINTAINER file to replace them.Koen Kooi1
2006-05-31Update MAINTAINER email address for packages created by AMD.Raymond Danks1
2006-04-18cpuburn: initial addRaymond Danks1