diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2008-01-08 09:24:57 +1100 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2008-01-08 09:29:47 +1100 |
commit | 2ce51d1e70aaf667be126b88a35b6210a45fb314 (patch) | |
tree | ff7f9771de9d39f5b6bc9e8fe7d66ce2f79a45ff | |
parent | 832299e099abcf644fb8a7362a9dd18a6a965871 (diff) | |
download | talos-petitboot-2ce51d1e70aaf667be126b88a35b6210a45fb314.tar.gz talos-petitboot-2ce51d1e70aaf667be126b88a35b6210a45fb314.zip |
Rename udev-helper to petitboot-udev-helper
.. so that the installed binary looks more like a component of
petitboot, not udev.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
-rw-r--r-- | Makefile | 13 | ||||
-rw-r--r-- | devices/petitboot-udev-helper.c (renamed from devices/udev-helper.c) | 0 | ||||
-rw-r--r-- | utils/99-petitboot.rules | 2 |
3 files changed, 8 insertions, 7 deletions
@@ -6,13 +6,13 @@ INSTALL=install TWIN_CFLAGS?=$(shell pkg-config --cflags libtwin) TWIN_LDFLAGS?=$(shell pkg-config --libs libtwin) -LDFLAGS = +LDFLAGS = CFLAGS = --std=gnu99 -O0 -ggdb -Wall '-DPREFIX="$(PREFIX)"' PARSERS = native yaboot kboot ARTWORK = background.jpg cdrom.png hdd.png usbpen.png tux.png cursor.gz -all: petitboot udev-helper +all: petitboot petitboot-udev-helper petitboot: petitboot.o devices.o $(CC) $(LDFLAGS) -o $@ $^ @@ -20,8 +20,8 @@ petitboot: petitboot.o devices.o petitboot: LDFLAGS+=$(TWIN_LDFLAGS) petitboot: CFLAGS+=$(TWIN_CFLAGS) -udev-helper: devices/udev-helper.o devices/params.o devices/parser.o \ - devices/paths.o devices/yaboot-cfg.o \ +petitboot-udev-helper: devices/petitboot-udev-helper.o devices/params.o \ + devices/parser.o devices/paths.o devices/yaboot-cfg.o \ $(foreach p,$(PARSERS),devices/$(p)-parser.o) $(CC) $(LDFLAGS) -o $@ $^ @@ -34,7 +34,8 @@ devices/%: CFLAGS+=-I. install: all $(INSTALL) -D petitboot $(DESTDIR)$(PREFIX)/sbin/petitboot - $(INSTALL) -D udev-helper $(DESTDIR)$(PREFIX)/sbin/udev-helper + $(INSTALL) -D petitboot-udev-helper \ + $(DESTDIR)$(PREFIX)/sbin/petitboot-udev-helper $(INSTALL) -Dd $(DESTDIR)$(PREFIX)/share/petitboot/artwork/ $(INSTALL) -t $(DESTDIR)$(PREFIX)/share/petitboot/artwork/ \ $(foreach a,$(ARTWORK),artwork/$(a)) @@ -64,5 +65,5 @@ $(PACKAGE)-$(VERSION): clean clean: rm -rf $(PACKAGE)-$(VERSION) rm -f petitboot - rm -f udev-helper + rm -f petitboot-udev-helper rm -f *.o devices/*.o diff --git a/devices/udev-helper.c b/devices/petitboot-udev-helper.c index 87a7fc1..87a7fc1 100644 --- a/devices/udev-helper.c +++ b/devices/petitboot-udev-helper.c diff --git a/utils/99-petitboot.rules b/utils/99-petitboot.rules index ea34a0a..e314db7 100644 --- a/utils/99-petitboot.rules +++ b/utils/99-petitboot.rules @@ -1,2 +1,2 @@ # tell petitboot when we see new block devices ... -SUBSYSTEM=="block",RUN+="/usr/sbin/udev-helper" +SUBSYSTEM=="block",RUN+="/usr/sbin/petitboot-udev-helper" |