Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Standardize on the vi editing directives being on the first line. | "Robert P. J. Day" | 2006-07-02 | 1 | -1/+2 | |
| | ||||||
* | Upgrade mdev to allow commands to be run on create/delete. | Rob Landley | 2006-06-26 | 1 | -91/+95 | |
| | | | | | | | | | | | Both Jason Schoon and Giuseppe Ciotta deserve credit for this, I used elements of both. It's been upgraded so that you can specify that a given command should run at create, at delete, or at both using different special characters (@, $, and * respectively). It uses the system() method of running command lines which means you can use environment variables on the command line (it sets $MDEV to the name of the current device being created/deleted, which is useful if you matched it via regex), and the documentation warns that you need a /bin/sh to make that work, so you probably want to pick a default shell. | |||||
* | Work around a persistent uClibc bug, since 0.9.29 still hasn't shipped. | Rob Landley | 2006-06-13 | 1 | -5/+6 | |
| | | | | Poked to do this by Jason Schoon. | |||||
* | Convert to a global struct, the way sed was. Now I have two, I can work out | Rob Landley | 2006-05-21 | 1 | -4/+9 | |
| | | | | the infrastructure to merge global structs into a union... | |||||
* | Shrink the code about 50 bytes, allocate less run-time memory, and add a | Rob Landley | 2006-05-08 | 1 | -20/+19 | |
| | | | | | comment that null terminating the string we sscanf() shouldn't be required since the kernel adds \n to the end of it and sscanf will stop there. | |||||
* | Create /dev/root symlink pointing to real root device, if any. | Rob Landley | 2006-02-21 | 1 | -0/+11 | |
| | ||||||
* | add back in path nulling after calling find_dev() since it is needed for now ... | Mike Frysinger | 2006-02-07 | 1 | -0/+1 | |
| | ||||||
* | cleanup style ... just because you use less spaces doesnt mean the resulting ↵ | Mike Frysinger | 2006-02-03 | 1 | -50/+63 | |
| | | | | code is smaller | |||||
* | shrink the code a bit | Mike Frysinger | 2006-02-03 | 1 | -8/+5 | |
| | ||||||
* | gavinl writes in Bug 661: | Mike Frysinger | 2006-02-03 | 1 | -1/+1 | |
| | | | | if read() file return less than 1, we should close the fd and then goto end. | |||||
* | just whitespace | Tim Riker | 2006-01-25 | 1 | -16/+16 | |
| | ||||||
* | There was a missing ! on strcmp (despite the fact it worked in my testing, | Rob Landley | 2006-01-22 | 1 | -12/+2 | |
| | | | | | I have no idea _how_), and a simpler fix for the extra \n problem. I tested this and it worked for me, for what that's worth... | |||||
* | Frank Sorenson added hotplug support to mdev. (I tweaked it a bit. Need | Rob Landley | 2006-01-12 | 1 | -14/+29 | |
| | | | | | to come up with a test suite for all the stuff that requires root access. Something involving User Mode Linux or QEMU, probably...) | |||||
* | The major:minor read from dev ends with \n, need to trim that. | Rob Landley | 2006-01-12 | 1 | -1/+1 | |
| | ||||||
* | use MAP_PRIVATE instead of MAP_SHARED for uClinux systems (see Bug 550) | Mike Frysinger | 2006-01-04 | 1 | -1/+1 | |
| | ||||||
* | Sigh. Left the debug path in. Fixed. | Rob Landley | 2005-12-17 | 1 | -1/+1 | |
| | ||||||
* | Added /etc/mdev.conf support. Adds about 1.9k to mdev. | Rob Landley | 2005-12-17 | 1 | -15/+122 | |
| | ||||||
* | Nothing to see here. Move along. | Rob Landley | 2005-12-13 | 1 | -0/+121 | |
Not buying it, eh? I know I said new features before 1.1, but, well... (I was weak!) The config file and hotplug modes aren't implemented yet. Might take a stab at those tomorrow. (I _should_ go back to focusing on the bug triage list.) |