From: Andrey Panin <pazke@donpac.ru>
To: Gabriel Ebner <ge@gabrielebner.at>
Cc: Andrew Morton <akpm@osdl.org>, linux-kernel@vger.kernel.org
Subject: Re: 2.6.7-rc2-mm1
Date: Tue, 1 Jun 2004 15:05:32 +0400 [thread overview]
Message-ID: <20040601110532.GE25943@pazke> (raw)
In-Reply-To: <15751764.P3t0zfFIzn@schnecke2.gabrielebner.at>
[-- Attachment #1.1: Type: text/plain, Size: 2008 bytes --]
On 153, 06 01, 2004 at 12:00:32PM +0200, Gabriel Ebner wrote:
> Hello,
>
> Compiling 2.6.7-rc2-mm1 on x86_64 using the attached config gives me the
> following error, though 2.6.7-rc1-mm2 compiled just fine:
>
> ...
> AS arch/x86_64/lib/memset.o
> AS arch/x86_64/lib/putuser.o
> AS arch/x86_64/lib/thunk.o
> CC arch/x86_64/lib/usercopy.o
> LD arch/x86_64/lib/built-in.o
> AR arch/x86_64/lib/lib.a
> GEN .version
> CHK include/linux/compile.h
> UPD include/linux/compile.h
> CC init/version.o
> LD init/built-in.o
> LD .tmp_vmlinux1
> arch/x86_64/kernel/built-in.o(.init.text+0x4236): In function
> `dmi_disable_acpi':
> : undefined reference to `acpi_force'
> arch/x86_64/kernel/built-in.o(.init.text+0x42a7): In function
> `force_acpi_ht':
> : undefined reference to `acpi_force'
> arch/x86_64/kernel/built-in.o(.init.text+0x4347): In function
> `acpi_boot_init':
> : undefined reference to `dmi_get_system_info'
> arch/x86_64/kernel/built-in.o(.init.text+0x43a9): In function
> `acpi_boot_init':
> : undefined reference to `acpi_force'
> arch/x86_64/kernel/built-in.o(.init.text+0x4408): In function
> `acpi_boot_init':
> : undefined reference to `dmi_check_system'
> arch/x86_64/ia32/built-in.o(.data+0x898): In function `ia32_sys_call_table':
> : undefined reference to `compat_get_mempolicy'
> drivers/built-in.o(.init.text+0xff1): In function `acpi_sleep_init':
> : undefined reference to `dmi_check_system'
> drivers/built-in.o(.init.text+0x848a): In function `i8042_init':
> : undefined reference to `dmi_check_system'
> arch/x86_64/pci/built-in.o(.init.text+0xb3f): In function
> `pcibios_irq_init':
> : undefined reference to `dmi_check_system'
> make: *** [.tmp_vmlinux1] Fehler 1
> schnecke2 linux #
Try the attached patch, it should fix DMI related problem.
--
Andrey Panin | Linux and UNIX system administrator
pazke@donpac.ru | PGP key: wwwkeys.pgp.net
[-- Attachment #1.2: patch-dmi-fix --]
[-- Type: text/plain, Size: 558 bytes --]
diff -urpN -X /usr/share/dontdiff linux-2.6.7-rc2-mm1.vanilla/include/linux/dmi.h linux-2.6.7-rc2-mm1/include/linux/dmi.h
--- linux-2.6.7-rc2-mm1.vanilla/include/linux/dmi.h 2004-06-01 14:48:18.000000000 +0400
+++ linux-2.6.7-rc2-mm1/include/linux/dmi.h 2004-06-01 14:50:24.000000000 +0400
@@ -32,7 +32,7 @@ struct dmi_system_id {
#define DMI_MATCH(a,b) { a, b }
-#ifdef CONFIG_X86
+#if defined(CONFIG_X86) && !defined(CONFIG_X86_64)
extern int dmi_check_system(struct dmi_system_id *list);
extern char * dmi_get_system_info(int field);
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
next prev parent reply other threads:[~2004-06-01 11:05 UTC|newest]
Thread overview: 70+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-06-01 9:15 2.6.7-rc2-mm1 Andrew Morton
2004-06-01 9:59 ` 2.6.7-rc2-mm1 Alexander Gran
2004-06-01 11:28 ` 2.6.7-rc2-mm1 AKIYAMA Nobuyuki
2004-06-01 11:39 ` 2.6.7-rc2-mm1 Alexander Gran
2004-06-01 16:07 ` 2.6.7-rc2-mm1 Ari Pollak
2004-06-01 16:22 ` 2.6.7-rc2-mm1 Ari Pollak
2004-06-01 10:00 ` 2.6.7-rc2-mm1 Gabriel Ebner
2004-06-01 11:05 ` Andrey Panin [this message]
2004-06-01 13:58 ` 2.6.7-rc2-mm1 Gabriel Ebner
2004-06-01 14:05 ` 2.6.7-rc2-mm1 Jan Killius
2004-06-01 10:29 ` 2.6.7-rc2-mm1 Christoph Hellwig
2004-06-01 13:43 ` 2.6.7-rc2-mm1 Mikael Pettersson
2004-06-01 13:57 ` 2.6.7-rc2-mm1 Christoph Hellwig
2004-06-01 14:14 ` 2.6.7-rc2-mm1 Mikael Pettersson
2004-06-01 10:48 ` 2.6.7-rc2-mm1 Dominik Karall
2004-06-01 11:24 ` 2.6.7-rc2-mm1 William Lee Irwin III
2004-06-01 11:37 ` 2.6.7-rc2-mm1 William Lee Irwin III
2004-06-02 10:18 ` 2.6.7-rc2-mm1 Paul Jackson
2004-06-02 10:23 ` 2.6.7-rc2-mm1 Andrew Morton
2004-06-05 11:07 ` 2.6.7-rc2-mm1 Matthias Urlichs
2004-06-06 8:02 ` 2.6.7-rc2-mm1 Paul Jackson
2004-06-01 11:26 ` 2.6.7-rc2-mm1 William Lee Irwin III
2004-06-01 11:36 ` 2.6.7-rc2-mm1 Keith Owens
2004-06-01 11:26 ` 2.6.7-rc2-mm1 Andy Lutomirski
2004-06-01 11:29 ` 2.6.7-rc2-mm1 William Lee Irwin III
2004-06-01 16:24 ` 2.6.7-rc2-mm1 Mikael Pettersson
2004-06-01 11:51 ` 2.6.7-rc2-mm1 Alexander Gran
2004-06-01 12:19 ` 2.6.7-rc2-mm1 Eric BEGOT
2004-06-01 16:19 ` 2.6.7-rc2-mm1 Adrian Bunk
2004-06-01 21:18 ` 2.6.7-rc2-mm1 Chris Wedgwood
2004-06-01 21:36 ` 2.6.7-rc2-mm1 Andrew Morton
2004-06-01 21:36 ` 2.6.7-rc2-mm1 David S. Miller
2004-06-01 22:21 ` 2.6.7-rc2-mm1 Alexander Gran
2004-06-01 21:45 ` 2.6.7-rc2-mm1 Alex Romosan
2004-06-01 14:55 ` 2.6.7-rc2-mm1: gcc 2.95 uaccess.h warnings Adrian Bunk
2004-06-01 15:03 ` Linus Torvalds
2004-06-01 16:10 ` Adrian Bunk
2004-06-01 16:07 ` 2.6.7-rc2-mm1 Norberto Bensa
2004-06-01 16:07 ` 2.6.7-rc2-mm1: e1000_ethtool.c compile error Adrian Bunk
2004-06-01 19:09 ` 2.6.7-rc2-mm1 Dominik Karall
2004-06-01 19:47 ` 2.6.7-rc2-mm1 Luiz Fernando N. Capitulino
2004-06-01 21:06 ` 2.6.7-rc2-mm1 Dominik Karall
2004-06-01 19:35 ` 2.6.7-rc2-mm1: compile error in kernel/exit.c Peter Lundkvist
2004-06-01 21:24 ` Mikael Pettersson
2004-06-01 23:12 ` 2.6.7-rc2-mm1 (compile stats) John Cherry
2004-06-02 0:39 ` [patch] 2.6.7-rc2-mm1: let SERIAL_8250_ACPI depend on ACPI_PCI Adrian Bunk
2004-06-02 11:27 ` [ACPI] " Matthew Wilcox
[not found] ` <20040602003938.GJ25681-cg1h10c7RbKzQB+pC5nmwQ@public.gmane.org>
2004-06-02 16:51 ` Bjorn Helgaas
2004-06-02 16:51 ` Bjorn Helgaas
2004-06-02 1:24 ` [1/2] use const in time.h unit conversion functions William Lee Irwin III
2004-06-02 1:26 ` [2/2] fix io_getevents() timer expiry setting William Lee Irwin III
2004-06-02 18:43 ` [1/2] use const in time.h unit conversion functions Matt Mackall
2004-06-02 18:52 ` William Lee Irwin III
2004-06-03 8:17 ` Denis Vlasenko
2004-06-02 9:21 ` 2.6.7-rc2-mm1 - bk-netdev.patch e1000_ethtool.c doesn't build Paul Jackson
2004-06-02 9:41 ` Paul Jackson
2004-06-02 13:26 ` 2.6.7-rc2-mm1 William Lee Irwin III
2004-06-03 23:38 ` 2.6.7-rc2-mm1 Greg KH
2004-06-04 0:07 ` 2.6.7-rc2-mm1 William Lee Irwin III
2004-06-04 5:18 ` 2.6.7-rc2-mm1 Vojtech Pavlik
2004-06-03 0:51 ` 2.6.7-rc2-mm1 Joshua Kwan
2004-06-03 13:24 ` 2.6.7-rc2-mm1 Mikael Pettersson
[not found] <22dBi-3Hb-27@gated-at.bofh.it>
[not found] ` <22exj-4ty-15@gated-at.bofh.it>
[not found] ` <22fjG-56P-11@gated-at.bofh.it>
[not found] ` <22i80-7v8-41@gated-at.bofh.it>
2004-06-01 15:19 ` 2.6.7-rc2-mm1 Andi Kleen
2004-06-01 15:58 ` 2.6.7-rc2-mm1 Gabriel Ebner
-- strict thread matches above, loose matches on Subject: below --
2004-06-01 22:49 2.6.7-rc2-mm1 Sid Boyce
2004-06-02 13:39 2.6.7-rc2-mm1 Sid Boyce
2004-06-03 4:28 ` 2.6.7-rc2-mm1 Andrew Morton
2004-06-03 11:30 ` 2.6.7-rc2-mm1 Sid Boyce
2004-06-03 13:18 ` 2.6.7-rc2-mm1 Sid Boyce
2004-06-03 22:04 ` 2.6.7-rc2-mm1 Sid Boyce
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20040601110532.GE25943@pazke \
--to=pazke@donpac.ru \
--cc=akpm@osdl.org \
--cc=ge@gabrielebner.at \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.