diff options
Diffstat (limited to 'bootscripts')
-rw-r--r-- | bootscripts/ChangeLog | 3 | ||||
-rw-r--r-- | bootscripts/lfs/init.d/modules | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/bootscripts/ChangeLog b/bootscripts/ChangeLog index bff8db335..9d4fbbb2d 100644 --- a/bootscripts/ChangeLog +++ b/bootscripts/ChangeLog @@ -1,3 +1,6 @@ +2014-07-02 Bruce Dubbs <bdubbs@linuxfromscratch.org> + * Remove obsolete check for /proc/ksyms in modules boot script + 2014-06-29 Bruce Dubbs <bdubbs@linuxfromscratch.org> * Remove systemd references and files diff --git a/bootscripts/lfs/init.d/modules b/bootscripts/lfs/init.d/modules index 884768cf2..cab5cfadd 100644 --- a/bootscripts/lfs/init.d/modules +++ b/bootscripts/lfs/init.d/modules @@ -26,7 +26,7 @@ ### END INIT INFO # Assure that the kernel has module support. -[ -e /proc/ksyms -o -e /proc/modules ] || exit 0 +[ -e /proc/modules ] || exit 0 . /lib/lsb/init-functions |