* [Linux-ia64] [piet@sgi.com: Re: kernel make install - why don't we make it easy like on ia32?]
@ 2002-03-21 6:51 Piet/Pete Delaney
2002-03-21 8:18 ` Piet/Pete Delaney
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Piet/Pete Delaney @ 2002-03-21 6:51 UTC (permalink / raw)
To: linux-ia64
How do I build:
/boot/module-info-${KERNELRELEASE}
/boot/kernel.h-${KERNELRELEASE}
/boot/initrd-${KERNELRELEASE}
In upgrading from RedHat ia64 2.4.9-18 to 2.4.17 and 2.4.18 may require changes in these files.
I thought linux/arch/i386/boot/Makefile would have been a resonable place to have found out how
i32 does it but it's not there.
I had problems last time I tried to run 2.4.17 on my 2.4.7-10 Red Hat 7.2 i386 systems.
I was wondering of the /boot/module-info file had to be updated or that the stuff in
/lib/modules that 'Make modules-install' sets up might need to be tweaked.
-piet
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Linux-ia64] [piet@sgi.com: Re: kernel make install - why don't we make it easy like on ia32?]
2002-03-21 6:51 [Linux-ia64] [piet@sgi.com: Re: kernel make install - why don't we make it easy like on ia32?] Piet/Pete Delaney
@ 2002-03-21 8:18 ` Piet/Pete Delaney
2002-03-21 20:03 ` Keith Owens
2002-03-21 21:30 ` Keith Owens
2 siblings, 0 replies; 4+ messages in thread
From: Piet/Pete Delaney @ 2002-03-21 8:18 UTC (permalink / raw)
To: linux-ia64
On Wed, Mar 20, 2002 at 10:51:32PM -0800, Piet/Pete Delaney wrote:
> How do I build:
>
> /boot/module-info-${KERNELRELEASE}
> /boot/kernel.h-${KERNELRELEASE}
> /boot/initrd-${KERNELRELEASE}
>
> In upgrading from RedHat ia64 2.4.9-18 to 2.4.17 and 2.4.18 may require changes in these files.
> I thought linux/arch/i386/boot/Makefile would have been a resonable place to have found out how
> i32 does it but it's not there.
>
> I had problems last time I tried to run 2.4.17 on my 2.4.7-10 Red Hat 7.2 i386 systems.
> I was wondering of the /boot/module-info file had to be updated or that the stuff in
> /lib/modules that 'Make modules-install' sets up might need to be tweaked.
The module problem I'm getting in trying to boot a generic 2.4.17 kernel is with /lib/ext3.0.
It's getting a lot of undefined symbols like:
getblk_Rsmp_0fdb96c8
journal_destroy_Rsmp_e6169b31
register_filesystem_Rsmp_462b6e36
__wait_on_buffer_Rsmp_e7187873
generic_read_dir_Rsmp_...
journal_try_start_Rsmp_...
journal_check_available_features_Rsmp_...
It fails in /bin/insmod in mounting the /proc filesystem.
Then it fails to mount the (ext3) root filesystem.
The last time I had this on a ia32 laptop I thought the
problem was with the root being a ext3 filesystem but the
ext3 filesystem being a loadable module. So I updated the
kernel .config file to make ext3 a part of the kernel instead
of a loadable module. I re-installed the modules just to be
safe and the kernel continued to get the same error. The only
thing I didn't do is to do a make mrproper. I'll try that this time.
Any suggestions?
-piet
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Linux-ia64] [piet@sgi.com: Re: kernel make install - why don't we make it easy like on ia32?]
2002-03-21 6:51 [Linux-ia64] [piet@sgi.com: Re: kernel make install - why don't we make it easy like on ia32?] Piet/Pete Delaney
2002-03-21 8:18 ` Piet/Pete Delaney
@ 2002-03-21 20:03 ` Keith Owens
2002-03-21 21:30 ` Keith Owens
2 siblings, 0 replies; 4+ messages in thread
From: Keith Owens @ 2002-03-21 20:03 UTC (permalink / raw)
To: linux-ia64
On Thu, 21 Mar 2002 00:18:18 -0800,
Piet/Pete Delaney <piet@sgi.com> wrote:
>On Wed, Mar 20, 2002 at 10:51:32PM -0800, Piet/Pete Delaney wrote:
>> How do I build:
>>
>> /boot/module-info-${KERNELRELEASE}
>> /boot/kernel.h-${KERNELRELEASE}
>> /boot/initrd-${KERNELRELEASE}
>>
>> In upgrading from RedHat ia64 2.4.9-18 to 2.4.17 and 2.4.18 may require changes in these files.
>> I thought linux/arch/i386/boot/Makefile would have been a resonable place to have found out how
>> i32 does it but it's not there.
>>
>> I had problems last time I tried to run 2.4.17 on my 2.4.7-10 Red Hat 7.2 i386 systems.
>> I was wondering of the /boot/module-info file had to be updated or that the stuff in
>> /lib/modules that 'Make modules-install' sets up might need to be tweaked.
>
>The module problem I'm getting in trying to boot a generic 2.4.17 kernel is with /lib/ext3.0.
>It's getting a lot of undefined symbols like:
>
> getblk_Rsmp_0fdb96c8
> journal_destroy_Rsmp_e6169b31
> register_filesystem_Rsmp_462b6e36
> __wait_on_buffer_Rsmp_e7187873
> generic_read_dir_Rsmp_...
> journal_try_start_Rsmp_...
> journal_check_available_features_Rsmp_...
>
>It fails in /bin/insmod in mounting the /proc filesystem.
>
>Then it fails to mount the (ext3) root filesystem.
>
>The last time I had this on a ia32 laptop I thought the
>problem was with the root being a ext3 filesystem but the
>ext3 filesystem being a loadable module. So I updated the
>kernel .config file to make ext3 a part of the kernel instead
>of a loadable module. I re-installed the modules just to be
>safe and the kernel continued to get the same error. The only
>thing I didn't do is to do a make mrproper. I'll try that this time.
http://www.tux.org/lkml/#s8-8
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Linux-ia64] [piet@sgi.com: Re: kernel make install - why don't we make it easy like on ia32?]
2002-03-21 6:51 [Linux-ia64] [piet@sgi.com: Re: kernel make install - why don't we make it easy like on ia32?] Piet/Pete Delaney
2002-03-21 8:18 ` Piet/Pete Delaney
2002-03-21 20:03 ` Keith Owens
@ 2002-03-21 21:30 ` Keith Owens
2 siblings, 0 replies; 4+ messages in thread
From: Keith Owens @ 2002-03-21 21:30 UTC (permalink / raw)
To: linux-ia64
On Wed, 20 Mar 2002 22:51:32 -0800,
Piet/Pete Delaney <piet@sgi.com> wrote:
>How do I build:
>
> /boot/module-info-${KERNELRELEASE}
> /boot/kernel.h-${KERNELRELEASE}
Redhat special files, not part of the kernel build.
> /boot/initrd-${KERNELRELEASE}
mkinitrd, if you really insist. initrd is useful for distributors and
when you need a binary only module at boot time. Otherwise initrd is a
pain in the neck, build boot drivers into the kernel instead.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2002-03-21 21:30 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-03-21 6:51 [Linux-ia64] [piet@sgi.com: Re: kernel make install - why don't we make it easy like on ia32?] Piet/Pete Delaney
2002-03-21 8:18 ` Piet/Pete Delaney
2002-03-21 20:03 ` Keith Owens
2002-03-21 21:30 ` Keith Owens
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox