add support for marking specific kernel module packages as potentially being required for mounting the rootfs (patch by cshore)
SVN-Revision: 19878
This commit is contained in:
parent
bfeb96126d
commit
93489b721e
1 changed files with 4 additions and 1 deletions
|
@ -70,6 +70,9 @@ define ModuleAutoLoad
|
||||||
add_module() { \
|
add_module() { \
|
||||||
mkdir -p $(2)/etc/modules.d; \
|
mkdir -p $(2)/etc/modules.d; \
|
||||||
( \
|
( \
|
||||||
|
[ "$$$$$$$$3" = "1" ] && { \
|
||||||
|
echo '# May be required for rootfs' ; \
|
||||||
|
} ; \
|
||||||
for mod in $$$$$$$$2; do \
|
for mod in $$$$$$$$2; do \
|
||||||
getvar mod; \
|
getvar mod; \
|
||||||
done \
|
done \
|
||||||
|
@ -154,7 +157,7 @@ $(call KernelPackage/$(1)/config)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define AutoLoad
|
define AutoLoad
|
||||||
add_module $(1) "$(2)";
|
add_module $(1) "$(2)" $(3);
|
||||||
endef
|
endef
|
||||||
|
|
||||||
ifdef DUMP
|
ifdef DUMP
|
||||||
|
|
Loading…
Reference in a new issue