[arch-projects] [PATCH] [mkinitcpio] Fix firmware install hook
Avoid inclusion of kernel/sound/firewire due recent change in checked_modules() Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> --- install/fw | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/install/fw b/install/fw index 9f4ed26..67355a5 100644 --- a/install/fw +++ b/install/fw @@ -2,7 +2,7 @@ install () { - MODULES=" $(checked_modules "/firewire/") " + MODULES=" $(checked_modules '/drivers/firewire/') " MODULES=$(echo ${MODULES}) #trim whitespace if [ -n "${MODULES}" ]; then -- 1.7.5.2
On 06/18/2011 05:05 PM, Gerardo Exequiel Pozzi wrote:
Avoid inclusion of kernel/sound/firewire due recent change in checked_modules()
Signed-off-by: Gerardo Exequiel Pozzi<vmlinuz386@yahoo.com.ar> --- install/fw | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/install/fw b/install/fw index 9f4ed26..67355a5 100644 --- a/install/fw +++ b/install/fw @@ -2,7 +2,7 @@
install () { - MODULES=" $(checked_modules "/firewire/") " + MODULES=" $(checked_modules '/drivers/firewire/') "
MODULES=$(echo ${MODULES}) #trim whitespace if [ -n "${MODULES}" ]; then This also will exclude kernel/drivers/media/dvb/firewire (previously included)
I guess its OK. -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
Am 18.06.2011 22:54, schrieb Gerardo Exequiel Pozzi:
On 06/18/2011 05:05 PM, Gerardo Exequiel Pozzi wrote:
Avoid inclusion of kernel/sound/firewire due recent change in checked_modules()
Signed-off-by: Gerardo Exequiel Pozzi<vmlinuz386@yahoo.com.ar>
I guess you meant "firewire", not "firmware".
On 06/19/2011 07:02 AM, Thomas Bächler wrote:
Am 18.06.2011 22:54, schrieb Gerardo Exequiel Pozzi:
On 06/18/2011 05:05 PM, Gerardo Exequiel Pozzi wrote:
Avoid inclusion of kernel/sound/firewire due recent change in checked_modules()
Signed-off-by: Gerardo Exequiel Pozzi<vmlinuz386@yahoo.com.ar> I guess you meant "firewire", not "firmware".
Oops! yes. -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
participants (2)
-
Gerardo Exequiel Pozzi
-
Thomas Bächler