Remove checkfstab script from boot.

It does some trouble and is actually not needed anymore.
This commit is contained in:
Michael Tremer
2011-09-17 20:08:29 +02:00
parent f077f82443
commit e4436f12a9
2 changed files with 230 additions and 2 deletions

View File

@@ -162,7 +162,6 @@ $(TARGET) :
ln -sf ../init.d/mountkernfs /etc/rc.d/rcsysinit.d/S00mountkernfs
ln -sf ../init.d/modules /etc/rc.d/rcsysinit.d/S05modules
ln -sf ../init.d/udev /etc/rc.d/rcsysinit.d/S10udev
ln -sf ../init.d/checkfstab /etc/rc.d/rcsysinit.d/S19checkfstab
ln -sf ../init.d/waitdrives /etc/rc.d/rcsysinit.d/S19waitdrives
ln -sf ../init.d/swap /etc/rc.d/rcsysinit.d/S20swap
ln -sf ../init.d/checkfs /etc/rc.d/rcsysinit.d/S30checkfs
@@ -199,5 +198,12 @@ $(TARGET) :
for i in green blue orange; do \
ln -sf any /etc/rc.d/init.d/networking/$$i; \
done
# ARM does not need checkfstab
ifeq "$(MACHINE_TYPE)" "arm"
rm -vf /etc/rc.d/init.d/checkfstab
else
ln -sf ../init.d/checkfstab /etc/rc.d/rcsysinit.d/S19checkfstab
endif
@$(POSTBUILD)