* [PATCH 2.4] Titan pci serial card recognition fix
From: Brian Murphy @ 2002-12-15 17:39 UTC (permalink / raw)
To: alan, linus; +Cc: linux-kernel
This patch fixes an error in the pci recognition table which
means that otherwise supportes Titan pci serial cards fail to
work.
This is the same as I just posted for the 2.5 kernel.
/Brian
--- drivers/char/serial.c 2002-12-15 18:21:15.000000000 +0100
+++ drivers/char/serial.c 2002-12-15 17:00:41.000000000 +0100
@@ -473,6 +473,7 @@
pbn_b1_4_115200,
pbn_b1_8_115200,
+ pbn_b1_1_921600,
pbn_b1_2_921600,
pbn_b1_4_921600,
pbn_b1_8_921600,
@@ -481,6 +482,8 @@
pbn_b1_4_1382400,
pbn_b1_8_1382400,
+ pbn_b1_bt_2_921600,
+
pbn_b2_1_115200,
pbn_b2_8_115200,
pbn_b2_4_460800,
@@ -494,6 +497,9 @@
pbn_b2_bt_4_115200,
pbn_b2_bt_2_921600,
+ pbn_bt_4_921600,
+ pbn_bt_8_921600,
+
pbn_panacom,
pbn_panacom2,
pbn_panacom4,
@@ -553,6 +559,7 @@
{ SPCI_FL_BASE1, 4, 115200 }, /* pbn_b1_4_115200 */
{ SPCI_FL_BASE1, 8, 115200 }, /* pbn_b1_8_115200 */
+ { SPCI_FL_BASE1, 1, 921600 }, /* pbn_b1_1_921600 */
{ SPCI_FL_BASE1, 2, 921600 }, /* pbn_b1_2_921600 */
{ SPCI_FL_BASE1, 4, 921600 }, /* pbn_b1_4_921600 */
{ SPCI_FL_BASE1, 8, 921600 }, /* pbn_b1_8_921600 */
@@ -561,6 +568,7 @@
{ SPCI_FL_BASE1, 4, 1382400 }, /* pbn_b1_4_1382400 */
{ SPCI_FL_BASE1, 8, 1382400 }, /* pbn_b1_8_1382400 */
+ { SPCI_FL_BASE1 | SPCI_FL_BASE_TABLE, 2, 921600 }, /* pbn_b1_bt_2_921600 */
{ SPCI_FL_BASE2, 1, 115200 }, /* pbn_b2_1_115200 */
{ SPCI_FL_BASE2, 8, 115200 }, /* pbn_b2_8_115200 */
{ SPCI_FL_BASE2, 4, 460800 }, /* pbn_b2_4_460800 */
@@ -574,6 +582,9 @@
{ SPCI_FL_BASE2 | SPCI_FL_BASE_TABLE, 4, 115200 }, /* pbn_b2_bt_4_115200 */
{ SPCI_FL_BASE2 | SPCI_FL_BASE_TABLE, 2, 921600 }, /* pbn_b2_bt_2_921600 */
+ { SPCI_FL_BASE_TABLE, 4, 921600 }, /* pbn_bt_4_921600 */
+ { SPCI_FL_BASE_TABLE, 8, 921600 }, /* pbn_bt_8_921600 */
+
{ SPCI_FL_BASE2, 2, 921600, /* IOMEM */ /* pbn_panacom */
0x400, 7, pci_plx9050_fn },
{ SPCI_FL_BASE2 | SPCI_FL_BASE_TABLE, 2, 921600, /* pbn_panacom2 */
@@ -1000,17 +1011,17 @@
pbn_b0_4_921600 },
{ PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_100L,
PCI_ANY_ID, PCI_ANY_ID,
- SPCI_FL_BASE1, 1, 921600 },
+ pbn_b1_1_921600 },
{ PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_200L,
PCI_ANY_ID, PCI_ANY_ID,
- SPCI_FL_BASE1 | SPCI_FL_BASE_TABLE, 2, 921600 },
+ pbn_b1_bt_2_921600 },
/* The 400L and 800L have a custom hack in get_pci_port */
{ PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_400L,
PCI_ANY_ID, PCI_ANY_ID,
- SPCI_FL_BASE_TABLE, 4, 921600 },
+ pbn_bt_4_921600 },
{ PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_800L,
PCI_ANY_ID, PCI_ANY_ID,
- SPCI_FL_BASE_TABLE, 8, 921600 },
+ pbn_bt_8_921600 },
{ PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S_10x_550,
PCI_ANY_ID, PCI_ANY_ID, 0, 0,
^ permalink raw reply
* Re: [parisc-linux] HP 712/80, LASI Harmony Audio and 16-bit's
From: Tim Kemna @ 2002-12-15 17:30 UTC (permalink / raw)
To: parisc-linux, Jussi Sallinen
In-Reply-To: <20021215150030.HEVW4145.fep02-app.kolumbus.fi@suorakulmio>
> I have HP 712/80, with LASI-chip - So soundcard is Harmony audio.
> I just compiled kernel, PA Harmony audio driver included into kernel,
> but without any kind of OSS sound modules.
> mikmod gives this:
> MikMod initialisation error : This driver supports uLaw output (8 bit
mono, 8 kHz) only
> Do i need to have OSS sound modules to be able to play 16bit stereo?
I also have a 712/80. I could do a 'cat foo.au > /dev/audio' without the OSS
modules compiled into the kernel or as module.
> And if so, as modules or into kernel?
Probably doesn't matter.
Greetings,
Tim
^ permalink raw reply
* [PATCH 2.5] Titan pci serial card recognition fix
From: Brian Murphy @ 2002-12-15 17:34 UTC (permalink / raw)
To: rmk; +Cc: linux-kernel
This patch fixes an error in the pci recognition table which
means that otherwise supportes Titan pci serial cards fail to
work.
/Brian
--- linux-2.5.44/drivers/serial/8250_pci.c 2002-12-15 18:21:15.000000000 +0100
+++ linux-2.5.44-mine/drivers/serial/8250_pci.c 2002-12-15 17:00:41.000000000 +0100
@@ -473,6 +473,7 @@
pbn_b1_4_115200,
pbn_b1_8_115200,
+ pbn_b1_1_921600,
pbn_b1_2_921600,
pbn_b1_4_921600,
pbn_b1_8_921600,
@@ -481,6 +482,8 @@
pbn_b1_4_1382400,
pbn_b1_8_1382400,
+ pbn_b1_bt_2_921600,
+
pbn_b2_1_115200,
pbn_b2_8_115200,
pbn_b2_4_460800,
@@ -494,6 +497,9 @@
pbn_b2_bt_4_115200,
pbn_b2_bt_2_921600,
+ pbn_bt_4_921600,
+ pbn_bt_8_921600,
+
pbn_panacom,
pbn_panacom2,
pbn_panacom4,
@@ -553,6 +559,7 @@
{ SPCI_FL_BASE1, 4, 115200 }, /* pbn_b1_4_115200 */
{ SPCI_FL_BASE1, 8, 115200 }, /* pbn_b1_8_115200 */
+ { SPCI_FL_BASE1, 1, 921600 }, /* pbn_b1_1_921600 */
{ SPCI_FL_BASE1, 2, 921600 }, /* pbn_b1_2_921600 */
{ SPCI_FL_BASE1, 4, 921600 }, /* pbn_b1_4_921600 */
{ SPCI_FL_BASE1, 8, 921600 }, /* pbn_b1_8_921600 */
@@ -561,6 +568,7 @@
{ SPCI_FL_BASE1, 4, 1382400 }, /* pbn_b1_4_1382400 */
{ SPCI_FL_BASE1, 8, 1382400 }, /* pbn_b1_8_1382400 */
+ { SPCI_FL_BASE1 | SPCI_FL_BASE_TABLE, 2, 921600 }, /* pbn_b1_bt_2_921600 */
{ SPCI_FL_BASE2, 1, 115200 }, /* pbn_b2_1_115200 */
{ SPCI_FL_BASE2, 8, 115200 }, /* pbn_b2_8_115200 */
{ SPCI_FL_BASE2, 4, 460800 }, /* pbn_b2_4_460800 */
@@ -574,6 +582,9 @@
{ SPCI_FL_BASE2 | SPCI_FL_BASE_TABLE, 4, 115200 }, /* pbn_b2_bt_4_115200 */
{ SPCI_FL_BASE2 | SPCI_FL_BASE_TABLE, 2, 921600 }, /* pbn_b2_bt_2_921600 */
+ { SPCI_FL_BASE_TABLE, 4, 921600 }, /* pbn_bt_4_921600 */
+ { SPCI_FL_BASE_TABLE, 8, 921600 }, /* pbn_bt_8_921600 */
+
{ SPCI_FL_BASE2, 2, 921600, /* IOMEM */ /* pbn_panacom */
0x400, 7, pci_plx9050_fn },
{ SPCI_FL_BASE2 | SPCI_FL_BASE_TABLE, 2, 921600, /* pbn_panacom2 */
@@ -1000,17 +1011,17 @@
pbn_b0_4_921600 },
{ PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_100L,
PCI_ANY_ID, PCI_ANY_ID,
- SPCI_FL_BASE1, 1, 921600 },
+ pbn_b1_1_921600 },
{ PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_200L,
PCI_ANY_ID, PCI_ANY_ID,
- SPCI_FL_BASE1 | SPCI_FL_BASE_TABLE, 2, 921600 },
+ pbn_b1_bt_2_921600 },
/* The 400L and 800L have a custom hack in get_pci_port */
{ PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_400L,
PCI_ANY_ID, PCI_ANY_ID,
- SPCI_FL_BASE_TABLE, 4, 921600 },
+ pbn_bt_4_921600 },
{ PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_800L,
PCI_ANY_ID, PCI_ANY_ID,
- SPCI_FL_BASE_TABLE, 8, 921600 },
+ pbn_bt_8_921600 },
{ PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S_10x_550,
PCI_ANY_ID, PCI_ANY_ID, 0, 0,
^ permalink raw reply
* Re: [linux-lvm] help: can't read name(s) of physical volumes (Debian kernel weirdness also involved)
From: Daniel J Hannum @ 2002-12-15 17:25 UTC (permalink / raw)
To: linux-lvm
In-Reply-To: <20021215160028.GA7519@tykepenguin.com>
Thanks a ton. Debian needs to make their documentation more clear. When
you install lvm, they say to either mount devfs (they don't say how) OR
install devfsd. Turns out, that should be AND. I had to send the kernel
param like you said. And it doesn't work without devfsd, either.
I'm not sure about this weird devfs thing... I guess it's the big new
thing so I better get used to it :)
Anyway, thanks.
dan
On Sun, 15 Dec 2002, Patrick Caulfield wrote:
> On Sat, Dec 14, 2002 at 08:53:21PM -0500, Daniel J Hannum wrote:
> > Hi. I feel dumb for subscribing to the list just so I can yell out my
> > problem and hopefully someone can help, but I'm at the end of my rope
> > here.
> >
> > Here's the situation. I just installed Debian 3.0 testing and I set it up
> > so that I was using their lvm10 package (version 1.0.4-6) for /usr, /var
> > /home, etc. (NOT /) It works fine off the kernel that Debian uses in its
> > install (2.4.18-bf2.4). BUT, if I install a stock Debian kernel with
> > apt-get (kernel-image-2.4.18-k7), lvm cannot see my physical volumes at
> > boot-time.
>
> The stock debian kernel has devfs compiled into it. :(
> So if you look in /proc/partitions it will show devfs device names
> rather than the "traditional" ones, although the devfs names are not
> actually avaiable to you. This confuses LVM.
>
> What you will need to do is to mount devfs at boot time (devfs=mount on
> the kernel command-line) on /dev and run devfsd (apt-get install devfsd) and
> things should work.
>
> --
>
> patrick
>
>
> _______________________________________________
> linux-lvm mailing list
> linux-lvm@sistina.com
> http://lists.sistina.com/mailman/listinfo/linux-lvm
> read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/
>
>
^ permalink raw reply
* Re: [PATCH] envy24control.[ch] update for hoontech cards.
From: Jaroslav Kysela @ 2002-12-15 17:23 UTC (permalink / raw)
To: Henry Walpool; +Cc: alsa-devel@lists.sourceforge.net
In-Reply-To: <20021214150508.153E13BB3@sitemail.everyone.net>
On Sat, 14 Dec 2002, Henry Walpool wrote:
> Added some code to block out the error messages for the hoontech cards
> when someone tries to access the professional/consumer option. I tried
> to get the information from hoontech but no luck. I don't think it would
> be that hard to add the correct code to enable these functions but
> hoontech is not talking unfortunately. Hoontech even stopped responding
> to my e-mails. The last response I got was "e-mail the alsa-developers".
> "They have all the information about hoontech cards already."
The original hoontech cards have hardwired support (in hardware) for
consumer mode only.
Jaroslav
-----
Jaroslav Kysela <perex@suse.cz>
Linux Kernel Sound Maintainer
ALSA Project, SuSE Labs
-------------------------------------------------------
This sf.net email is sponsored by:
With Great Power, Comes Great Responsibility
Learn to use your power at OSDN's High Performance Computing Channel
http://hpc.devchannel.org/
^ permalink raw reply
* [LARTC] Nearly complettly victory
From: David Coello @ 2002-12-15 17:02 UTC (permalink / raw)
To: lartc
Hi
At last i achive to make QOS works limitting bandwidth per port but with
one exception : ftp. I don´t know why this port doesn´t works (aplies the
default rule not the own). Anyone has experience with a similar problem?
Thanks and regards
David
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
^ permalink raw reply
* [PATCH] RCU statistics 2.5.51
From: Dipankar Sarma @ 2002-12-15 16:53 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-kernel
Hi Linus,
This is a re-transmit of the patch that adds some basic statistics to
RCU (/proc/rcu). The statistics made available by this patch are very generic
in nature - # of RCU requests and # of actual RCU updates for each
CPU. This will allow us to monitor the health of the RCU
subsystem and such things have been extremely useful for
investigating problems. For example, if a CPU looping in kernel
stops RCU grace period from completing, we would be easily able
to detect it by looking at these counters. Without these, that
becomes very difficult.
dipankar@llm04 dipankar]$ cat /proc/rcu
CPU : 0
RCU requests : 0
RCU updates : 0
CPU : 1
RCU requests : 0
RCU updates : 0
CPU : 2
RCU requests : 0
RCU updates : 0
CPU : 3
RCU requests : 0
RCU updates : 0
This patch has been in akpm's -mm tree for a long time now and would be nice
to have in your tree.
Thanks
Dipankar
Documentation/filesystems/proc.txt | 4 +++
fs/proc/proc_misc.c | 13 ++++++++++
include/linux/rcupdate.h | 4 +++
kernel/rcupdate.c | 48 +++++++++++++++++++++++++++++++++++--
4 files changed, 67 insertions(+), 2 deletions(-)
diff -urN linux-2.5.51-base/Documentation/filesystems/proc.txt linux-2.5.51-rcu_stats/Documentation/filesystems/proc.txt
--- linux-2.5.51-base/Documentation/filesystems/proc.txt 2002-12-10 08:15:52.000000000 +0530
+++ linux-2.5.51-rcu_stats/Documentation/filesystems/proc.txt 2002-12-14 22:58:51.000000000 +0530
@@ -222,6 +222,7 @@
partitions Table of partitions known to the system
pci Depreciated info of PCI bus (new way -> /proc/bus/pci/,
decoupled by lspci (2.4)
+ rcu Read-Copy Update information (2.5)
rtc Real time clock
scsi SCSI info (see text)
slabinfo Slab pool info
@@ -346,6 +347,9 @@
ZONE_DMA, 4 chunks of 2^1*PAGE_SIZE in ZONE_DMA, 101 chunks of 2^4*PAGE_SIZE
availble in ZONE_NORMAL, etc...
+The rcu file gives information about Read-Copy Update synchronization
+primitive. It indicates the number for RCU requests and actual
+updates for every CPU.
1.3 IDE devices in /proc/ide
----------------------------
diff -urN linux-2.5.51-base/fs/proc/proc_misc.c linux-2.5.51-rcu_stats/fs/proc/proc_misc.c
--- linux-2.5.51-base/fs/proc/proc_misc.c 2002-12-10 08:15:44.000000000 +0530
+++ linux-2.5.51-rcu_stats/fs/proc/proc_misc.c 2002-12-14 22:58:51.000000000 +0530
@@ -243,6 +243,18 @@
.release = seq_release,
};
+extern struct seq_operations rcu_op;
+static int rcu_open(struct inode *inode, struct file *file)
+{
+ return seq_open(file, &rcu_op);
+}
+static struct file_operations proc_rcu_operations = {
+ .open = rcu_open,
+ .read = seq_read,
+ .llseek = seq_lseek,
+ .release = seq_release,
+};
+
extern struct seq_operations vmstat_op;
static int vmstat_open(struct inode *inode, struct file *file)
{
@@ -586,6 +598,7 @@
if (entry)
entry->proc_fops = &proc_kmsg_operations;
create_seq_entry("cpuinfo", 0, &proc_cpuinfo_operations);
+ create_seq_entry("rcu", 0, &proc_rcu_operations);
create_seq_entry("partitions", 0, &proc_partitions_operations);
#if !defined(CONFIG_ARCH_S390)
create_seq_entry("interrupts", 0, &proc_interrupts_operations);
diff -urN linux-2.5.51-base/include/linux/rcupdate.h linux-2.5.51-rcu_stats/include/linux/rcupdate.h
--- linux-2.5.51-base/include/linux/rcupdate.h 2002-12-10 08:15:52.000000000 +0530
+++ linux-2.5.51-rcu_stats/include/linux/rcupdate.h 2002-12-14 22:58:51.000000000 +0530
@@ -95,6 +95,8 @@
long batch; /* Batch # for current RCU batch */
struct list_head nxtlist;
struct list_head curlist;
+ long nr_rcureqs;
+ long nr_rcupdates;
};
DECLARE_PER_CPU(struct rcu_data, rcu_data);
@@ -105,6 +107,8 @@
#define RCU_batch(cpu) (per_cpu(rcu_data, (cpu)).batch)
#define RCU_nxtlist(cpu) (per_cpu(rcu_data, (cpu)).nxtlist)
#define RCU_curlist(cpu) (per_cpu(rcu_data, (cpu)).curlist)
+#define RCU_nr_rcureqs(cpu) (per_cpu(rcu_data, (cpu)).nr_rcureqs)
+#define RCU_nr_rcupdates(cpu) (per_cpu(rcu_data, (cpu)).nr_rcupdates)
#define RCU_QSCTR_INVALID 0
diff -urN linux-2.5.51-base/kernel/rcupdate.c linux-2.5.51-rcu_stats/kernel/rcupdate.c
--- linux-2.5.51-base/kernel/rcupdate.c 2002-12-10 08:15:40.000000000 +0530
+++ linux-2.5.51-rcu_stats/kernel/rcupdate.c 2002-12-14 22:58:51.000000000 +0530
@@ -41,6 +41,7 @@
#include <linux/module.h>
#include <linux/completion.h>
#include <linux/percpu.h>
+#include <linux/seq_file.h>
#include <linux/notifier.h>
#include <linux/rcupdate.h>
@@ -75,6 +76,7 @@
local_irq_save(flags);
cpu = smp_processor_id();
list_add_tail(&head->list, &RCU_nxtlist(cpu));
+ RCU_nr_rcureqs(cpu)++;
local_irq_restore(flags);
}
@@ -82,7 +84,7 @@
* Invoke the completed RCU callbacks. They are expected to be in
* a per-cpu list.
*/
-static void rcu_do_batch(struct list_head *list)
+static void rcu_do_batch(int cpu, struct list_head *list)
{
struct list_head *entry;
struct rcu_head *head;
@@ -92,6 +94,7 @@
list_del(entry);
head = list_entry(entry, struct rcu_head, list);
head->func(head->arg);
+ RCU_nr_rcupdates(cpu)++;
}
}
@@ -187,7 +190,7 @@
}
rcu_check_quiescent_state();
if (!list_empty(&list))
- rcu_do_batch(&list);
+ rcu_do_batch(cpu, &list);
}
void rcu_check_callbacks(int cpu, int user)
@@ -266,3 +269,44 @@
EXPORT_SYMBOL(call_rcu);
EXPORT_SYMBOL(synchronize_kernel);
+
+#ifdef CONFIG_PROC_FS
+
+static void *rcu_start(struct seq_file *m, loff_t *pos)
+{
+ static int cpu;
+ cpu = *pos;
+ return *pos < NR_CPUS ? &cpu : NULL;
+}
+
+static void *rcu_next(struct seq_file *m, void *v, loff_t *pos)
+{
+ ++*pos;
+ return rcu_start(m, pos);
+}
+
+static void rcu_stop(struct seq_file *m, void *v)
+{
+}
+
+static int show_rcu(struct seq_file *m, void *v)
+{
+ int cpu = *(int *)v;
+
+ if (!cpu_online(cpu))
+ return 0;
+ seq_printf(m, "CPU : %d\n", cpu);
+ seq_printf(m, "RCU requests : %ld\n", RCU_nr_rcureqs(cpu));
+ seq_printf(m, "RCU updates : %ld\n\n", RCU_nr_rcupdates(cpu));
+ return 0;
+}
+
+struct seq_operations rcu_op = {
+ .start = rcu_start,
+ .next = rcu_next,
+ .stop = rcu_stop,
+ .show = show_rcu,
+};
+
+#endif
+
^ permalink raw reply
* kernels 2.4.19--2.4.20-ac2 hang at boot
From: merlin hughes @ 2002-12-15 16:34 UTC (permalink / raw)
To: linux-kernel
Hi,
On a new machine, kernels 2.4.19-pre7 onwards hang immediately
after 'Okay, booting the kernel.' Earlier 2.4 kernels boot fine if
I supply mem=120M manually (installed memory minus shared memory).
2.2 kernels boot fine with no command-line arguments.
Shuttle FX41 mobo; Via KM266 chipset; onboard video.
This seems to be similar to Justin Heesemann's problem:
http://www.uwsg.iu.edu/hypermail/linux/kernel/0208.2/0772.html
I assigned shared video to 0M in the BIOS but the system hung at
the same place, would only boot 2.4.19-pre6 with mem=120M
(I presume; no video to be sure that it was the same place). This
suggests that maybe it's not shared video memory that's the problem,
and mem=120M in some other way worked around the issue on earler
2.4 kernels.
Some 2.4.19-pre7 change to arch/i386/kernel/setup.c definitely
seems to have rendered these systems unbootable.
dmesg 2.4.19-pre6 / 8MB shared video RAM
----
Linux version 2.4.19-pre6-morigu (root@morigu.merlin.org) (gcc version 2.95.4 20011002 (Debian prerelease)) #2 Sat Dec 14 00:21:12 EST 2002
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 00000000000a0000 (usable)
BIOS-e820: 00000000000a0000 - 00000000077f0000 (reserved)
BIOS-e820: 00000000077f0000 - 00000000077f3000 (ACPI NVS)
BIOS-e820: 00000000077f3000 - 0000000007800000 (ACPI data)
On node 0 totalpages: 30720
zone(0): 4096 pages.
zone(1): 26624 pages.
zone(2): 0 pages.
Kernel command line: auto BOOT_IMAGE=linux ro root=301 mem=120M
Initializing CPU#0
Detected 1100.070 MHz processor.
Console: colour VGA+ 80x25
Calibrating delay loop... 2195.45 BogoMIPS
Memory: 119784k/122880k available (762k kernel code, 2708k reserved, 225k data, 196k init, 0k highmem)
...
----
dmesg 2.2.20 / 8MB shared video RAM
----
Linux version 2.2.20 (herbert@gondolin) (gcc version 2.7.2.3) #1 Sat Apr 20 11:45:28 EST 2002
BIOS-provided physical RAM map:
BIOS-e820: 000a0000 @ 00000000 (usable)
BIOS-e820: 076f0000 @ 00100000 (usable)
Detected 1100070 kHz processor.
Console: colour VGA+ 80x25
Calibrating delay loop... 2195.45 BogoMIPS
Memory: 118916k/122816k available (1756k kernel code, 408k reserved, 1584k data, 152k init)
...
----
dmesg 2.4.19-pre6 / 0MB shared video RAM (still needed mem=120M)
----
Linux version 2.4.19-pre6-morigu (root@morigu.merlin.org) (gcc version 2.95.4 20011002 (Debian prerelease)) #2 Sat Dec 14 00:21:12 EST 2002
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 00000000000a0000 (usable)
BIOS-e820: 00000000000a0000 - 0000000007ff0000 (reserved)
BIOS-e820: 0000000007ff0000 - 0000000007ff3000 (ACPI NVS)
BIOS-e820: 0000000007ff3000 - 0000000008000000 (ACPI data)
On node 0 totalpages: 30720
zone(0): 4096 pages.
zone(1): 26624 pages.
zone(2): 0 pages.
Kernel command line: auto BOOT_IMAGE=linux ro root=301 mem=120M
Initializing CPU#0
Detected 1100.070 MHz processor.
Calibrating delay loop... 2195.45 BogoMIPS
Memory: 119788k/122880k available (762k kernel code, 2704k reserved, 225k data, 196k init, 0k highmem)
...
----
dmesg 2.2.20 / 0MB shared video RAM
----
Linux version 2.2.20 (herbert@gondolin) (gcc version 2.7.2.3) #1 Sat Apr 20 11:45:28 EST 2002
BIOS-provided physical RAM map:
BIOS-e820: 000a0000 @ 00000000 (usable)
BIOS-e820: 07ef0000 @ 00100000 (usable)
Detected 1100070 kHz processor.
Console: colour dummy device 80x25
Calibrating delay loop... 2195.45 BogoMIPS
Memory: 127028k/131008k available (1756k kernel code, 408k reserved, 1664k data, 152k init)
...
----
merlin
^ permalink raw reply
* Re: Linux-2.4.20: bug with radeonfb - solved
From: Adrian Bunk @ 2002-12-15 16:19 UTC (permalink / raw)
To: José Luis Tallón; +Cc: linux-kernel
In-Reply-To: <5.1.1.6.0.20021215123609.00b979e8@mail.adv-solutions.net>
On Sun, Dec 15, 2002 at 12:55:06PM +0100, José Luis Tallón wrote:
>...
> >Does it work if you revert the patch against drivers/video/radeonfb.c
> >that is in -ac?
> >
> >Does it work in plain 2.4.20 (without the -ac patch)?
>
> <sweating and blushing>
> Works perfect with 2.4.20 vanilla :-|
> ( I had previously trusted Alan's patches quite blindly )
> - Chipset and DMA working
>
>
> Will test with -ac2 and 21-pre1 and report back, so that we can isolate the
> bug ( quite a nasty one, I can assure you )
If -ac2 fails, could you try to to revert the -ac change to
drivers/video/radeonfb.c and check whether this cures your problem?
> Thanks again.
>
> J.L.
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply
* Present rate from proc-fs
From: Jonas Genannt @ 2002-12-15 16:09 UTC (permalink / raw)
To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Hello !
I develop an GUI-Tool for displaying the state of the battery in kde.
My program needs the last full capacity, remaining capacity and the present
rate for calculating the state of the battery. I need the present rate for
the time how long the notebook works with the battery power.
But some notebooks (Toshiba Satellite 3000-514) does not offer the present
rate in the proc-fs.
My program needs the value!! How I program that I could calcualte the
remaining time without the present rate?
Or could I calcualte the present rate from the other values?
bye
Jonas
My program: http://www.elektronikschule.de/~genannt/kacpi
-------------------------------------------------------
This sf.net email is sponsored by:
With Great Power, Comes Great Responsibility
Learn to use your power at OSDN's High Performance Computing Channel
http://hpc.devchannel.org/
^ permalink raw reply
* Re: Proposed ACPI Licensing change
From: Pavel Machek @ 2002-12-09 18:59 UTC (permalink / raw)
To: Grover, Andrew; +Cc: acpi-devel, linux-kernel
In-Reply-To: <EDC461A30AC4D511ADE10002A5072CAD04C7A57F@orsmsx119.jf.intel.com>
Hi!
> In order to solve this, we are considering releasing the Linux version of
> the interpreter under a dual license. This would allow direct incorporation
> of changes. Any patches submitted against the ACPI core code would
> implicitly be allowed to be used by us in a non-GPL context. This is already
> done elsewhere in the Linux kernel source by the PCMCIA code, for example.
>
> Comments?
Good idea, and should have been done year
ago. I was always wondering why noone
patches ACPI :-).
--
Pavel
Written on sharp zaurus, because my Velo1 broke. If you have Velo you don't need...
^ permalink raw reply
* Re: [2.5.50, ACPI] link error
From: Pavel Machek @ 2002-12-09 7:29 UTC (permalink / raw)
To: Eric Altendorf; +Cc: Pavel Machek, Jochen Hein, Linux Kernel Mailing List
In-Reply-To: <200212062150.06350.EricAltendorf@orst.edu>
Hi!
> > > Right ... I'm no kernel hacker so I don't know why, but I can
> > > only get the recent kernels to compile with sleep states if I
> > > turn *ON* software suspend as well. However, as soon as I turn
> > > on swsusp and get a compiled kernel, it oops'es on boot.
> >
> > Can you mail me decoded oops?
> > Pavel
>
> This is the first time I've decoded an oops, and since I had to decode it on a different kernel (2.5.25) than the one I'm debugging (2.5.50 + Dec 6 ACPI patch), and I couldn't
Can you try passing
"resume=hda5_or_whatever_your_swap_partition_is"?
--
Pavel
Written on sharp zaurus, because my Velo1 broke. If you have Velo you don't need...
^ permalink raw reply
* Re: serial_pci_tbl is incorrect for some Titan devices
From: Russell King @ 2002-12-15 15:59 UTC (permalink / raw)
To: Brian Murphy; +Cc: linux-kernel
In-Reply-To: <3DFC9E8E.8040702@murphy.dk>
On Sun, Dec 15, 2002 at 04:23:58PM +0100, Brian Murphy wrote:
> There are still some Titan devices defined around line 990 in
> 8250_pci which use the old format for this structure. Is there
> any chance that the patch I submitted a while ago to fix this
> problem will be accepted?
No, because as far as I can tell, I didn't receive such a patch.
The only patch I have that's outstanding from you is for the IRQ255
problem - I believe at the time there was some debate about whether
it was the right way to handle the problem or not.
--
Russell King (rmk@arm.linux.org.uk) The developer of ARM Linux
http://www.arm.linux.org.uk/personal/aboutme.html
^ permalink raw reply
* Re: Kernel for Pentium 4 hyperthreading?
From: Dave Jones @ 2002-12-15 15:58 UTC (permalink / raw)
To: Vergoz Michael (SYSDOOR); +Cc: Scott Robert Ladd, linux-kernel
In-Reply-To: <00d601c2a451$519c01c0$3803a8c0@descript>
On Sun, Dec 15, 2002 at 04:47:39PM +0100, Vergoz Michael (SYSDOOR) wrote:
> Hi,
>
> It's possible to enable HT on any pentium 4, you just have to patch the bios
> :P
A rumour perpetuated by many, and achieved by none to my knowledge.
Dave
--
| Dave Jones. http://www.codemonkey.org.uk
| SuSE Labs
^ permalink raw reply
* Re: Kernel for Pentium 4 hyperthreading?
From: Dave Jones @ 2002-12-15 15:57 UTC (permalink / raw)
To: Scott Robert Ladd; +Cc: linux-kernel
In-Reply-To: <FKEAJLBKJCGBDJJIPJLJAEICDLAA.scott@coyotegulch.com>
On Sun, Dec 15, 2002 at 10:07:43AM -0500, Scott Robert Ladd wrote:
> Hi,
>
> What I have is, indeed, a hyperthread-enabled Pentium 4. They aren't common;
> I obtained this one direct from Intel through their Early Access Program.
Ah, apologies. Yes. In this case, you win. I bit the same problem you
had btw with this box in 2.4. You need an updated BIOS. Contact Intel.
Dave
--
| Dave Jones. http://www.codemonkey.org.uk
| SuSE Labs
^ permalink raw reply
* EXT3-fs panic on 2.4.20
From: Lukasz Trabinski @ 2002-12-15 15:51 UTC (permalink / raw)
To: linux-kernel
After 14 days, on running 2.4.20 machine, ext3 partitions mounted without
any special options.
ksymoops 2.4.4 on i686 2.4.20. Options used
-V (default)
-k /proc/ksyms (default)
-l /proc/modules (default)
-o /lib/modules/2.4.20/ (default)
-m /lib/modules/2.4.20/System.map (specified)
Dec 15 15:27:01 oceanic kernel: Kernel panic: EXT3-fs panic (device sd(8,23)): load_block_bitmap: block_group >= groups_count - block_group = 524287, groups_count = 2126
Dec 15 15:27:01 oceanic kernel: kernel BUG at transaction.c:248!
Dec 15 15:27:01 oceanic kernel: invalid operand: 0000
Dec 15 15:27:01 oceanic kernel: CPU: 0
Dec 15 15:27:01 oceanic kernel: EIP: 0010:[<f88ab368>] Not tainted
Using defaults from ksymoops -t elf32-i386 -a i386
Dec 15 15:27:01 oceanic kernel: EFLAGS: 00010202
Dec 15 15:27:01 oceanic kernel: eax: 0000007a ebx: f5c4fd40 ecx: c029e0c0 edx: 00018765
Dec 15 15:27:01 oceanic kernel: esi: f7b57000 edi: f7530000 ebp: f6295920 esp: f753178c
Dec 15 15:27:01 oceanic kernel: ds: 0018 es: 0018 ss: 0018
Dec 15 15:27:01 oceanic kernel: Process smbd (pid: 21636, stackpage=f7531000)
Dec 15 15:27:01 oceanic kernel: Stack: f88b2300 f88b3ffb f88b3fd0 000000f8 f88b23a0 f5c4fd40 ffffffe2 f77020c0
Dec 15 15:27:01 oceanic kernel: f88bf7de f7b57000 00000001 c013afe6 d585ae60 c013bc31 00000400 00000000
Dec 15 15:27:01 oceanic kernel: 00014140 00000000 c2382900 f77020c0 f7b56800 00000001 c014db12 f77020c0
Dec 15 15:27:01 oceanic kernel: Call Trace: [<f88b2300>] [<f88b3ffb>] [<f88b3fd0>] [<f88b23a0>] [<f88bf7de>]
Dec 15 15:27:01 oceanic kernel: [<c013afe6>] [<c013bc31>] [<c014db12>] [<c012c2f7>] [<c012c4e0>] [<c013b188>]
Dec 15 15:27:01 oceanic kernel: [<c0199cfb>] [<f88babc2>] [<c0153aeb>] [<c0153dac>] [<c013a1d3>] [<c013a40e>]
Dec 15 15:27:01 oceanic kernel: [<f88c7320>] [<c013a467>] [<c0117599>] [<f88c247f>] [<f88c5e40>] [<f88c7320>]
Dec 15 15:27:01 oceanic kernel: [<f88c9540>] [<f88c9540>] [<f88c4960>] [<f88b919d>] [<f88c7320>] [<f88c4960>]
Dec 15 15:27:01 oceanic kernel: [<c014db12>] [<f88b9452>] [<f88bf229>] [<f88bf287>] [<f88abd6f>] [<f88bf6b1>]
Dec 15 15:27:01 oceanic kernel: [<f88bf645>] [<f88bf656>] [<f88bf757>] [<f88bf819>] [<f88ac466>] [<f88bc0f3>]
Dec 15 15:27:01 oceanic kernel: [<c01fefb2>] [<f88be345>] [<f88aff50>] [<f88abd0e>] [<f88b1d40>] [<f88be42c>]
Dec 15 15:27:01 oceanic kernel: [<c01c35d2>] [<f88abd0e>] [<c01b72bc>] [<f88be72f>] [<c011c6ed>] [<c013a04e>]
Dec 15 15:27:01 oceanic kernel: [<c013af18>] [<c013b1b6>] [<f88be5d6>] [<c013af18>] [<f88abd0e>] [<f88bf645>]
Dec 15 15:27:01 oceanic kernel: [<f88bf656>] [<f88be9c5>] [<f88b3ff0>] [<f88b1c27>] [<f88ab285>] [<f88ab39d>]
Dec 15 15:27:01 oceanic kernel: [<f88bc1c8>] [<f88ac705>] [<f88bc35c>] [<f88bc280>] [<f88bc280>] [<c014f178>]
Dec 15 15:27:01 oceanic kernel: [<c014d216>] [<c014551e>] [<c0143090>] [<c01440ba>] [<c01455d9>] [<c01070c3>]
Dec 15 15:27:01 oceanic kernel: Code: 0f 0b f8 00 d0 3f 8b f8 83 c4 14 ff 43 08 eb 40 8b 4c 24 14
>>EIP; f88ab368 <[jbd]__kstrtab_journal_update_format+28/40> <=====
Trace; f88b2300 <[jbd].rodata.end+61/5391>
Trace; f88b3ffb <[jbd].rodata.end+1d5c/5391>
Trace; f88b3fd0 <[jbd].rodata.end+1d31/5391>
Trace; f88b23a0 <[jbd].rodata.end+101/5391>
Trace; f88bf7de <[ext3]ext3_dirty_inode+6e/100>
Trace; c013afe6 <balance_dirty+6/30>
Trace; c013bc31 <__block_commit_write+b1/e0>
Trace; c014db12 <__mark_inode_dirty+32/b0>
Trace; c012c2f7 <generic_file_write+387/810>
Trace; c012c4e0 <generic_file_write+570/810>
Trace; c013b188 <bread+18/70>
Trace; c0199cfb <generic_unplug_device+2b/40>
Trace; f88babc2 <[ext3]ext3_file_write+22/b0>
Trace; c0153aeb <write_dquot+ab/100>
Trace; c0153dac <sync_dquots+8c/e0>
Trace; c013a1d3 <write_unlocked_buffers+23/30>
Trace; c013a40e <fsync_dev+3e/80>
Trace; f88c7320 <[ext3].text.end+2af1/49f1>
Trace; c013a467 <sys_sync+7/10>
Trace; c0117599 <panic+79/110>
Trace; f88c247f <[ext3]ext3_panic+3f/40>
Trace; f88c5e40 <[ext3].text.end+1611/49f1>
Trace; f88c7320 <[ext3].text.end+2af1/49f1>
Trace; f88c9540 <[ext3]error_buf+0/0>
Trace; f88c9540 <[ext3]error_buf+0/0>
Trace; f88c4960 <[ext3].text.end+131/49f1>
Trace; f88b919d <[ext3]__load_block_bitmap+2d/1b0>
Trace; f88c7320 <[ext3].text.end+2af1/49f1>
Trace; f88c4960 <[ext3].text.end+131/49f1>
Trace; c014db12 <__mark_inode_dirty+32/b0>
Trace; f88b9452 <[ext3]ext3_free_blocks+132/5f0>
Trace; f88bf229 <[ext3]ext3_do_update_inode+2f9/380>
Trace; f88bf287 <[ext3]ext3_do_update_inode+357/380>
Trace; f88abd6f <[jbd]journal_get_write_access+3f/60>
Trace; f88bf6b1 <[ext3]ext3_reserve_inode_write+31/b0>
Trace; f88bf645 <[ext3]ext3_mark_iloc_dirty+25/60>
Trace; f88bf656 <[ext3]ext3_mark_iloc_dirty+36/60>
Trace; f88bf757 <[ext3]ext3_mark_inode_dirty+27/40>
Trace; f88bf819 <[ext3]ext3_dirty_inode+a9/100>
Trace; f88ac466 <[jbd]journal_forget+e6/1d0>
Trace; f88bc0f3 <[ext3]ext3_forget+63/e0>
Trace; c01fefb2 <ip_output+f2/160>
Trace; f88be345 <[ext3]ext3_clear_blocks+135/140>
Trace; f88aff50 <[jbd]journal_cancel_revoke+50/d0>
Trace; f88abd0e <[jbd]do_get_write_access+4fe/520>
Trace; f88b1d40 <[jbd]journal_alloc_journal_head+10/70>
Trace; f88be42c <[ext3]ext3_free_data+dc/190>
Trace; c01c35d2 <ahc_linux_queue+172/1c0>
Trace; f88abd0e <[jbd]do_get_write_access+4fe/520>
Trace; c01b72bc <scsi_dispatch_cmd+12c/270>
Trace; f88be72f <[ext3]ext3_free_branches+24f/260>
Trace; c011c6ed <__run_task_queue+5d/70>
Trace; c013a04e <__wait_on_buffer+8e/a0>
Trace; c013af18 <getblk+28/60>
Trace; c013b1b6 <bread+46/70>
Trace; f88be5d6 <[ext3]ext3_free_branches+f6/260>
Trace; c013af18 <getblk+28/60>
Trace; f88abd0e <[jbd]do_get_write_access+4fe/520>
Trace; f88bf645 <[ext3]ext3_mark_iloc_dirty+25/60>
Trace; f88bf656 <[ext3]ext3_mark_iloc_dirty+36/60>
Trace; f88be9c5 <[ext3]ext3_truncate+285/3a0>
Trace; f88b3ff0 <[jbd].rodata.end+1d51/5391>
Trace; f88b1c27 <[jbd]__jbd_kmalloc+27/70>
Trace; f88ab285 <[jbd]__kstrtab_journal_revoke+7/22>
Trace; f88ab39d <[jbd]__kstrtab_journal_check_used_features+1d/40>
Trace; f88bc1c8 <[ext3]start_transaction+58/90>
Trace; f88ac705 <[jbd]journal_stop+185/190>
Trace; f88bc35c <[ext3]ext3_delete_inode+dc/180>
Trace; f88bc280 <[ext3]ext3_delete_inode+0/180>
Trace; f88bc280 <[ext3]ext3_delete_inode+0/180>
Trace; c014f178 <iput+168/280>
Trace; c014d216 <d_delete+66/c0>
Trace; c014551e <vfs_unlink+1de/210>
Trace; c0143090 <cached_lookup+10/50>
Trace; c01440ba <lookup_hash+4a/d0>
Trace; c01455d9 <sys_unlink+89/f0>
Trace; c01070c3 <system_call+33/38>
Code; f88ab368 <[jbd]__kstrtab_journal_update_format+28/40>
00000000 <_EIP>:
Code; f88ab368 <[jbd]__kstrtab_journal_update_format+28/40> <=====
0: 0f 0b ud2a <=====
Code; f88ab36a <[jbd]__kstrtab_journal_update_format+2a/40>
2: f8 clc
Code; f88ab36b <[jbd]__kstrtab_journal_update_format+2b/40>
3: 00 d0 add %dl,%al
Code; f88ab36d <[jbd]__kstrtab_journal_update_format+2d/40>
5: 3f aas
Code; f88ab36e <[jbd]__kstrtab_journal_update_format+2e/40>
6: 8b f8 mov %eax,%edi
Code; f88ab370 <[jbd]__kstrtab_journal_update_format+30/40>
8: 83 c4 14 add $0x14,%esp
Code; f88ab373 <[jbd]__kstrtab_journal_update_format+33/40>
b: ff 43 08 incl 0x8(%ebx)
Code; f88ab376 <[jbd]__kstrtab_journal_update_format+36/40>
e: eb 40 jmp 50 <_EIP+0x50> f88ab3b8 <[jbd]__kstrtab_journal_check_used_features+38/40>
Code; f88ab378 <[jbd]__kstrtab_journal_update_format+38/40>
10: 8b 4c 24 14 mov 0x14(%esp,1),%ecx
^ permalink raw reply
* Re: problems creating a driver
From: David Gómez @ 2002-12-15 15:49 UTC (permalink / raw)
To: David Sanán Baena; +Cc: linux-kernel
In-Reply-To: <002901c2a43a$b057d5c0$6e9afea9@anabel>
Hi David ;);
> totcl.cc:60: sorry, not implemented: non-trivial labeled initializers
> totcl.cc:60: cannot convert `int (*) (inode *, file *)' to `ssize_t (*)
> (file *, char *, unsigned int, loff_t *)' in initialization
> make: *** [totcl.ko] Error 1
I think the problem it's that designated initializers are not implemented in
the GNU c++ compiler, so you have to initialize all the field in the structure.
> my file_operations var is:
> struct file_operations totcl_fops=
> {
> read:totcl_read,
> open:totcl_open,
> release:totcl_release,
> };
By the way, C99 syntax is better, most of the kernel has been changed to the
new syntax:
struct file_operations totcl_fops=
{
.read=totcl_read,
.open=totcl_open,
.release=toctl_release,
};
--
David Gómez
"The question of whether computers can think is just like the question of
whether submarines can swim." -- Edsger W. Dijkstra
^ permalink raw reply
* Re: Kernel for Pentium 4 hyperthreading?
From: Vergoz Michael (SYSDOOR) @ 2002-12-15 15:47 UTC (permalink / raw)
To: Scott Robert Ladd, Dave Jones; +Cc: linux-kernel
In-Reply-To: <FKEAJLBKJCGBDJJIPJLJAEICDLAA.scott@coyotegulch.com>
Hi,
It's possible to enable HT on any pentium 4, you just have to patch the bios
:P
> Hi,
>
> What I have is, indeed, a hyperthread-enabled Pentium 4. They aren't
common;
> I obtained this one direct from Intel through their Early Access Program.
> The proof in the pudding is that both Windows XP and Linux 2.5.51
recognize
> it as having "two" processors. The motherboard is an Intel Maryville2
(i850E
> chipset), with an option to enable/disable HT on the first BIOS set-up
> screen.
>
> > Note that just because /proc/cpuinfo shows 'ht' does not mean you can
> > use it in hyperthreaded mode. To do that, you also have to have >1
> > sibling in the physical package. Non-Xeon type P4's don't have the
> > extra sibling, so don't function as a hyperthreaded CPU.
>
> Mine does, and so will any 3.06 or 3.6 GHz Pentium 4.
>
> As it is, I'm past the worst of my troubles (knock on wood!) We'll see
what
> happens in the coming days the machine gets stressed. It looks stable with
> 2.5.51 -- so I guess I'm now a Linux kernel beta tester... ;)
>
> Thanks much.
>
> ..Scott
>
> --
> Scott Robert Ladd
> Coyote Gulch Productions, http://www.coyotegulch.com
> No ads -- just very free (and somewhat unusual) code.
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply
* Re: Modem Identification
From: Chuck Gelm @ 2002-12-15 15:34 UTC (permalink / raw)
To: Frank Roberts - SOTL; +Cc: Linux Newbie
In-Reply-To: <200212150901.21290.sotl155360@earthlink.net>
Hi, Frank:
Is your modem internal or external?
If it is a full modem and it is internal
it will appear as a uart.
If your BIOS displays hardware configuration at bootup,
watch for the extra serial port in 'the box'.
If it is external, you may need to guess its speed, parity,
and 7 or 8 bits. Once you can communicate with an external
modem send it
ATI4
and if it is Hayes Command Set compatible,
it will tell you about itself.
I purchased an alleged 'full modem' some years ago
only to find out it was a 'winmodem'. :-(
The last one I bought was a 56k and cost about 34 USD.
HTH, Chuck
Frank Roberts - SOTL wrote:
>
> Thanks Ray
>
> Actually your response is very close to my intent.
>
> What I am trying to do is identify which port I have a modem which may or may
> not be a win modem connected to.
> It was purchased as a full modem but I sincerely question that it is.
>
> As far as using minicom that is another slight problem there in that for some
> reason I do not have minicom functioning correctly or something resulting in
> that being the next major issue to be resolved since I need minicom for
> another major reason.
>
> Isn't there a command that allows one to "ping" a modem from the command line
> and which returns the modem identification annd type? I seem to recall that
> there is but I can not recall it but again this may be falty network memory.
>
> Thanks
> Frank
>
> On Saturday 14 December 2002 20:19, Ray Olszewski wrote:
> > At 08:14 PM 12/14/02 -0500, Frank Roberts - SOTL wrote:
> > >Hi All
> > >
> > >Question:
> > > >From the command line how does one determine which port a modem is on?
> >
> > It depends on exactly what you mean. I'm guessing that you intend to refer
> > to a situation where you have 2 or more serial ports in a computer, and a
> > modem conencted to one of them, but the ports are unlabeled so you dont
> > know which one the modem is attached to. In that case, I would use a
> > terminal app (such as minicom) to connect to each port, and see which port
> > (actuall, its associated /dev/ttyS* entry) gets responses from the modem to
> > typical AT commands.
> >
> > There are many more things you *might* mean, though. So if I've guessed
> > wrong (and someone else does not guess right), please post a followup that
> > asks the question in a different, more specific form.
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply
* Re: 2.4.21-pre1 broke the ide-tape driver
From: Mikael Pettersson @ 2002-12-15 15:37 UTC (permalink / raw)
To: linux-kernel, m.c.p; +Cc: marcelo
On Sun, 15 Dec 2002 02:23:34 +0100, Marc-Christian Petersen wrote:
>> Kernel 2.4.21-pre1 broke the ide-tape driver: the driver
>> now hangs during initialisation. 2.2 kernels (with Andre's
>> IDE patch) and 2.4 up to 2.4.20 do not have this problem.
>> My box has a Seagate STT8000A ATAPI tape drive as hdd;
>> hdc is a Philips CD-RW, and the controller is ICH2 (i850 chipset).
>http://linux.bkbits.net:8080/linux-2.4/patch@1.828?nav=index.html|ChangeSet@-7d|cset@1.828
That fixed it. Thanks.
/Mikael
^ permalink raw reply
* Re: Modem Identification
From: Hal MacArgle @ 2002-12-15 15:23 UTC (permalink / raw)
To: linux-newbie
In-Reply-To: <200212142014.07963.sotl155360@earthlink.net>
Greetings: If you don't have Minicom, re Ray's suggestion, you can,
if you have it in your distribution - use 'dip -t'...
I used it years ago to talk to a modem but I don't have it on this
machine.. Try 'man dip' for the syntax.. The '-t' flag means "test."
If you have the mfgr/model number and/or FCC ID number you can search
on www.google.com to see if it's a WinModem or not.. The suggestions
are to stay away from WinModems with Linux but there are drivers for
the Motorola modem specifically for certain narrow distributions.
HTH and good luck,
Hal - in Terra Alta, WV - Slackware GNU/Linux 8.0 (2.4.13)
haltec@iceweb.net | w8mch@iceweb.net
Proprietary Formats Unacceptable
NON ILLEGITIMI CARBORUNDUM
On 12-14, Frank Roberts - SOTL wrote:
> Hi All
>
>
> Question:
> From the command line how does one determine which port a modem is on?
>
>
> Thanks
> Frank
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply
* serial_pci_tbl is incorrect for some Titan devices
From: Brian Murphy @ 2002-12-15 15:23 UTC (permalink / raw)
To: linux-kernel; +Cc: Russell King
There are still some Titan devices defined around line 990 in
8250_pci which use the old format for this structure. Is there
any chance that the patch I submitted a while ago to fix this
problem will be accepted?
The same problem exists in the 2.4 serial driver.
/Brian
^ permalink raw reply
* [PATCH] Remove Rules.make from Makefiles (1/3)
From: Brian Gerst @ 2002-12-15 15:16 UTC (permalink / raw)
To: Linus Torvalds; +Cc: Linux-Kernel
[-- Attachment #1: Type: text/plain, Size: 170 bytes --]
Makefiles no longer need to include Rules.make, which is currently an
empty file. This patch removes it from the arch tree Makefiles except
for sparc, ia64, and cris.
[-- Attachment #2: rules.make-arch-2 --]
[-- Type: text/plain, Size: 62918 bytes --]
diff -urN linux-2.5.51-bk2/arch/alpha/kernel/Makefile linux/arch/alpha/kernel/Makefile
--- linux-2.5.51-bk2/arch/alpha/kernel/Makefile Sat Dec 14 12:32:04 2002
+++ linux/arch/alpha/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -92,5 +92,3 @@
endif
endif # GENERIC
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/alpha/lib/Makefile linux/arch/alpha/lib/Makefile
--- linux-2.5.51-bk2/arch/alpha/lib/Makefile Sat Dec 14 12:31:40 2002
+++ linux/arch/alpha/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -49,8 +49,6 @@
obj-$(CONFIG_SMP) += dec_and_lock.o
-include $(TOPDIR)/Rules.make
-
$(obj)/__divqu.o: $(obj)/$(ev6)divide.S
$(CC) $(AFLAGS) -DDIV -c -o $(obj)/__divqu.o $(obj)/$(ev6)divide.S
diff -urN linux-2.5.51-bk2/arch/alpha/math-emu/Makefile linux/arch/alpha/math-emu/Makefile
--- linux-2.5.51-bk2/arch/alpha/math-emu/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/alpha/math-emu/Makefile Sun Dec 15 10:09:28 2002
@@ -5,5 +5,3 @@
CFLAGS += -I. -I$(TOPDIR)/include/math-emu -w
obj-$(CONFIG_MATHEMU) += math.o qrnnd.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/alpha/mm/Makefile linux/arch/alpha/mm/Makefile
--- linux-2.5.51-bk2/arch/alpha/mm/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/alpha/mm/Makefile Sun Dec 15 10:09:28 2002
@@ -5,5 +5,3 @@
obj-y := init.o fault.o extable.o
obj-$(CONFIG_DISCONTIGMEM) += numa.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/kernel/Makefile linux/arch/arm/kernel/Makefile
--- linux-2.5.51-bk2/arch/arm/kernel/Makefile Sat Dec 14 12:32:04 2002
+++ linux/arch/arm/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -40,8 +40,6 @@
EXTRA_TARGETS := $(head-y) init_task.o
-include $(TOPDIR)/Rules.make
-
# Spell out some dependencies that `make dep' doesn't spot
$(obj)/entry-armv.o: $(obj)/entry-header.S include/asm-arm/constants.h
$(obj)/entry-armo.o: $(obj)/entry-header.S include/asm-arm/constants.h
diff -urN linux-2.5.51-bk2/arch/arm/lib/Makefile linux/arch/arm/lib/Makefile
--- linux-2.5.51-bk2/arch/arm/lib/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/arm/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -41,8 +41,6 @@
obj-$(CONFIG_CPU_26) += uaccess-armo.o
-include $(TOPDIR)/Rules.make
-
$(obj)/csumpartialcopy.o: $(obj)/csumpartialcopygeneric.S
$(obj)/csumpartialcopyuser.o: $(obj)/csumpartialcopygeneric.S
diff -urN linux-2.5.51-bk2/arch/arm/mach-adifcc/Makefile linux/arch/arm/mach-adifcc/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-adifcc/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-adifcc/Makefile Sun Dec 15 10:09:28 2002
@@ -10,5 +10,3 @@
obj- :=
export-objs :=
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-anakin/Makefile linux/arch/arm/mach-anakin/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-anakin/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-anakin/Makefile Sun Dec 15 10:09:28 2002
@@ -10,5 +10,3 @@
obj- :=
export-objs :=
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-arc/Makefile linux/arch/arm/mach-arc/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-arc/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-arc/Makefile Sun Dec 15 10:09:28 2002
@@ -17,5 +17,3 @@
EXTRA_TARGETS := head.o
AFLAGS_head.o := -DTEXTADDR=$(TEXTADDR)
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-clps711x/Makefile linux/arch/arm/mach-clps711x/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-clps711x/Makefile Sat Dec 14 12:31:36 2002
+++ linux/arch/arm/mach-clps711x/Makefile Sun Dec 15 10:09:28 2002
@@ -18,5 +18,3 @@
obj-$(CONFIG_ARCH_P720T) += p720t.o
leds-$(CONFIG_ARCH_P720T) += p720t-leds.o
obj-$(CONFIG_LEDS) += $(leds-y)
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-clps7500/Makefile linux/arch/arm/mach-clps7500/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-clps7500/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-clps7500/Makefile Sun Dec 15 10:09:28 2002
@@ -10,5 +10,3 @@
obj- :=
export-objs :=
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-ebsa110/Makefile linux/arch/arm/mach-ebsa110/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-ebsa110/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-ebsa110/Makefile Sun Dec 15 10:09:28 2002
@@ -12,5 +12,3 @@
export-objs := io.o
obj-$(CONFIG_LEDS) += leds.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-epxa10db/Makefile linux/arch/arm/mach-epxa10db/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-epxa10db/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-epxa10db/Makefile Sun Dec 15 10:09:28 2002
@@ -10,6 +10,3 @@
obj- :=
export-objs :=
-
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-footbridge/Makefile linux/arch/arm/mach-footbridge/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-footbridge/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-footbridge/Makefile Sun Dec 15 10:09:28 2002
@@ -25,5 +25,3 @@
obj-$(CONFIG_PCI) +=$(pci-y)
obj-$(CONFIG_LEDS) +=$(leds-y)
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-ftvpci/Makefile linux/arch/arm/mach-ftvpci/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-ftvpci/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-ftvpci/Makefile Sun Dec 15 10:09:28 2002
@@ -13,5 +13,3 @@
obj-$(CONFIG_PCI) += pci.o
obj-$(CONFIG_LEDS) += leds.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-integrator/Makefile linux/arch/arm/mach-integrator/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-integrator/Makefile Sat Dec 14 12:31:36 2002
+++ linux/arch/arm/mach-integrator/Makefile Sun Dec 15 10:09:28 2002
@@ -11,5 +11,3 @@
obj-$(CONFIG_LEDS) += leds.o
obj-$(CONFIG_PCI) += pci_v3.o pci.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-iop310/Makefile linux/arch/arm/mach-iop310/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-iop310/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-iop310/Makefile Sun Dec 15 10:09:28 2002
@@ -22,5 +22,3 @@
obj-$(CONFIG_IOP310_DMA) += dma.o
obj-$(CONFIG_IOP310_MU) += message.o
obj-$(CONFIG_IOP310_PMON) += pmon.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-l7200/Makefile linux/arch/arm/mach-l7200/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-l7200/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-l7200/Makefile Sun Dec 15 10:09:28 2002
@@ -10,5 +10,3 @@
obj- :=
export-objs :=
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-pxa/Makefile linux/arch/arm/mach-pxa/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-pxa/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-pxa/Makefile Sun Dec 15 10:09:28 2002
@@ -21,5 +21,3 @@
# Misc features
obj-$(CONFIG_PM) += pm.o sleep.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-rpc/Makefile linux/arch/arm/mach-rpc/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-rpc/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-rpc/Makefile Sun Dec 15 10:09:28 2002
@@ -10,6 +10,3 @@
obj- :=
export-objs :=
-
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-sa1100/Makefile linux/arch/arm/mach-sa1100/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-sa1100/Makefile Sat Dec 14 12:31:42 2002
+++ linux/arch/arm/mach-sa1100/Makefile Sun Dec 15 10:09:28 2002
@@ -108,5 +108,3 @@
# Miscelaneous functions
obj-$(CONFIG_PM) += pm.o sleep.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-shark/Makefile linux/arch/arm/mach-shark/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-shark/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-shark/Makefile Sun Dec 15 10:09:28 2002
@@ -12,5 +12,3 @@
export-objs :=
obj-$(CONFIG_LEDS) += leds.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mach-tbox/Makefile linux/arch/arm/mach-tbox/Makefile
--- linux-2.5.51-bk2/arch/arm/mach-tbox/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/mach-tbox/Makefile Sun Dec 15 10:09:28 2002
@@ -10,5 +10,3 @@
obj- :=
export-objs :=
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/mm/Makefile linux/arch/arm/mm/Makefile
--- linux-2.5.51-bk2/arch/arm/mm/Makefile Sat Dec 14 12:32:02 2002
+++ linux/arch/arm/mm/Makefile Sun Dec 15 10:09:28 2002
@@ -38,5 +38,3 @@
p-$(CONFIG_CPU_XSCALE) += proc-xscale.o tlb-v4wbi.o copypage-xscale.o abort-xscale.o minicache.o
obj-y += $(sort $(p-y))
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/arm/nwfpe/Makefile linux/arch/arm/nwfpe/Makefile
--- linux-2.5.51-bk2/arch/arm/nwfpe/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/arm/nwfpe/Makefile Sun Dec 15 10:09:28 2002
@@ -17,5 +17,3 @@
else
nwfpe-objs += entry.o
endif
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/i386/boot/compressed/Makefile linux/arch/i386/boot/compressed/Makefile
--- linux-2.5.51-bk2/arch/i386/boot/compressed/Makefile Sat Dec 14 12:32:10 2002
+++ linux/arch/i386/boot/compressed/Makefile Sun Dec 15 10:09:28 2002
@@ -7,8 +7,6 @@
EXTRA_TARGETS := vmlinux vmlinux.bin vmlinux.bin.gz head.o misc.o piggy.o
EXTRA_AFLAGS := -traditional
-include $(TOPDIR)/Rules.make
-
LDFLAGS_vmlinux := -Ttext $(IMAGE_OFFSET) -e startup_32
$(obj)/vmlinux: $(obj)/head.o $(obj)/misc.o $(obj)/piggy.o FORCE
diff -urN linux-2.5.51-bk2/arch/i386/kernel/Makefile linux/arch/i386/kernel/Makefile
--- linux-2.5.51-bk2/arch/i386/kernel/Makefile Sat Dec 14 12:32:02 2002
+++ linux/arch/i386/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -34,5 +34,3 @@
export-objs += scx200.o
obj-$(CONFIG_SCx200) += scx200.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/i386/kernel/cpu/Makefile linux/arch/i386/kernel/cpu/Makefile
--- linux-2.5.51-bk2/arch/i386/kernel/cpu/Makefile Sat Dec 14 12:32:00 2002
+++ linux/arch/i386/kernel/cpu/Makefile Sun Dec 15 10:09:28 2002
@@ -17,6 +17,3 @@
obj-$(CONFIG_MTRR) += mtrr/
obj-$(CONFIG_CPU_FREQ) += cpufreq/
-
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/i386/kernel/cpu/cpufreq/Makefile linux/arch/i386/kernel/cpu/cpufreq/Makefile
--- linux-2.5.51-bk2/arch/i386/kernel/cpu/cpufreq/Makefile Sat Dec 14 12:31:36 2002
+++ linux/arch/i386/kernel/cpu/cpufreq/Makefile Sun Dec 15 10:09:28 2002
@@ -4,5 +4,3 @@
obj-$(CONFIG_X86_P4_CLOCKMOD) += p4-clockmod.o
obj-$(CONFIG_ELAN_CPUFREQ) += elanfreq.o
obj-$(CONFIG_X86_LONGRUN) += longrun.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/i386/kernel/cpu/mcheck/Makefile linux/arch/i386/kernel/cpu/mcheck/Makefile
--- linux-2.5.51-bk2/arch/i386/kernel/cpu/mcheck/Makefile Sat Dec 14 12:32:00 2002
+++ linux/arch/i386/kernel/cpu/mcheck/Makefile Sun Dec 15 10:09:28 2002
@@ -1,5 +1,2 @@
obj-y = mce.o k7.o p4.o p5.o p6.o winchip.o
obj-$(CONFIG_X86_MCE_NONFATAL) += non-fatal.o
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/i386/kernel/cpu/mtrr/Makefile linux/arch/i386/kernel/cpu/mtrr/Makefile
--- linux-2.5.51-bk2/arch/i386/kernel/cpu/mtrr/Makefile Sun Sep 15 22:18:17 2002
+++ linux/arch/i386/kernel/cpu/mtrr/Makefile Sun Dec 15 10:09:28 2002
@@ -4,5 +4,3 @@
obj-y += centaur.o
export-objs := main.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/i386/kernel/timers/Makefile linux/arch/i386/kernel/timers/Makefile
--- linux-2.5.51-bk2/arch/i386/kernel/timers/Makefile Sat Dec 14 12:31:40 2002
+++ linux/arch/i386/kernel/timers/Makefile Sun Dec 15 10:09:28 2002
@@ -7,5 +7,3 @@
obj-y += timer_tsc.o
obj-y += timer_pit.o
obj-$(CONFIG_X86_CYCLONE) += timer_cyclone.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/i386/lib/Makefile linux/arch/i386/lib/Makefile
--- linux-2.5.51-bk2/arch/i386/lib/Makefile Sat Dec 14 12:31:44 2002
+++ linux/arch/i386/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -11,5 +11,3 @@
obj-$(CONFIG_X86_USE_3DNOW) += mmx.o
obj-$(CONFIG_HAVE_DEC_LOCK) += dec_and_lock.o
obj-$(CONFIG_DEBUG_IOVIRT) += iodebug.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/i386/mach-generic/Makefile linux/arch/i386/mach-generic/Makefile
--- linux-2.5.51-bk2/arch/i386/mach-generic/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/i386/mach-generic/Makefile Sun Dec 15 10:09:28 2002
@@ -5,5 +5,3 @@
EXTRA_CFLAGS += -I../kernel
obj-y := setup.o topology.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/i386/mach-visws/Makefile linux/arch/i386/mach-visws/Makefile
--- linux-2.5.51-bk2/arch/i386/mach-visws/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/i386/mach-visws/Makefile Sun Dec 15 10:09:28 2002
@@ -9,5 +9,3 @@
obj-$(CONFIG_PCI) += pci-visws.o
obj-$(CONFIG_X86_VISWS_APIC) += visws_apic.o
obj-$(CONFIG_X86_LOCAL_APIC) += mpparse.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/i386/mach-voyager/Makefile linux/arch/i386/mach-voyager/Makefile
--- linux-2.5.51-bk2/arch/i386/mach-voyager/Makefile Sat Dec 14 12:31:47 2002
+++ linux/arch/i386/mach-voyager/Makefile Sun Dec 15 10:09:28 2002
@@ -13,5 +13,3 @@
obj-y := setup.o voyager_basic.o voyager_thread.o
obj-$(CONFIG_SMP) += voyager_smp.o voyager_cat.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/i386/math-emu/Makefile linux/arch/i386/math-emu/Makefile
--- linux-2.5.51-bk2/arch/i386/math-emu/Makefile Sat Dec 14 12:31:33 2002
+++ linux/arch/i386/math-emu/Makefile Sun Dec 15 10:09:28 2002
@@ -26,7 +26,5 @@
obj-y =$(C_OBJS) $(A_OBJS)
-include $(TOPDIR)/Rules.make
-
proto:
cproto -e -DMAKING_PROTO *.c >fpu_proto.h
diff -urN linux-2.5.51-bk2/arch/i386/mm/Makefile linux/arch/i386/mm/Makefile
--- linux-2.5.51-bk2/arch/i386/mm/Makefile Sat Dec 14 12:31:44 2002
+++ linux/arch/i386/mm/Makefile Sun Dec 15 10:09:28 2002
@@ -9,5 +9,3 @@
obj-$(CONFIG_DISCONTIGMEM) += discontig.o
obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o
obj-$(CONFIG_HIGHMEM) += highmem.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/i386/pci/Makefile linux/arch/i386/pci/Makefile
--- linux-2.5.51-bk2/arch/i386/pci/Makefile Sat Dec 14 12:31:48 2002
+++ linux/arch/i386/pci/Makefile Sun Dec 15 10:09:28 2002
@@ -16,5 +16,3 @@
endif # CONFIG_X86_NUMAQ
obj-y += irq.o common.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/amiga/Makefile linux/arch/m68k/amiga/Makefile
--- linux-2.5.51-bk2/arch/m68k/amiga/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/m68k/amiga/Makefile Sun Dec 15 10:09:28 2002
@@ -7,5 +7,3 @@
obj-y := config.o amiints.o cia.o chipram.o amisound.o amiga_ksyms.o
obj-$(CONFIG_AMIGA_PCMCIA) += pcmcia.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/apollo/Makefile linux/arch/m68k/apollo/Makefile
--- linux-2.5.51-bk2/arch/m68k/apollo/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/m68k/apollo/Makefile Sun Dec 15 10:09:28 2002
@@ -3,5 +3,3 @@
#
obj-y := config.o dn_ints.o dma.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/atari/Makefile linux/arch/m68k/atari/Makefile
--- linux-2.5.51-bk2/arch/m68k/atari/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68k/atari/Makefile Sun Dec 15 10:09:28 2002
@@ -10,5 +10,3 @@
ifeq ($(CONFIG_PCI),y)
obj-$(CONFIG_HADES) += hades-pci.o
endif
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/bvme6000/Makefile linux/arch/m68k/bvme6000/Makefile
--- linux-2.5.51-bk2/arch/m68k/bvme6000/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/m68k/bvme6000/Makefile Sun Dec 15 10:09:28 2002
@@ -3,5 +3,3 @@
#
obj-y := config.o bvmeints.o rtc.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/fpsp040/Makefile linux/arch/m68k/fpsp040/Makefile
--- linux-2.5.51-bk2/arch/m68k/fpsp040/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/m68k/fpsp040/Makefile Sun Dec 15 10:09:28 2002
@@ -13,6 +13,4 @@
EXTRA_AFLAGS := -traditional
EXTRA_LDFLAGS := -x
-include $(TOPDIR)/Rules.make
-
$(OS_OBJS): fpsp.h
diff -urN linux-2.5.51-bk2/arch/m68k/hp300/Makefile linux/arch/m68k/hp300/Makefile
--- linux-2.5.51-bk2/arch/m68k/hp300/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68k/hp300/Makefile Sun Dec 15 10:09:28 2002
@@ -3,5 +3,3 @@
#
obj-y := ksyms.o config.o ints.o time.o reboot.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/ifpsp060/Makefile linux/arch/m68k/ifpsp060/Makefile
--- linux-2.5.51-bk2/arch/m68k/ifpsp060/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/m68k/ifpsp060/Makefile Sun Dec 15 10:09:28 2002
@@ -8,5 +8,3 @@
EXTRA_AFLAGS := -traditional
EXTRA_LDFLAGS := -x
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/kernel/Makefile linux/arch/m68k/kernel/Makefile
--- linux-2.5.51-bk2/arch/m68k/kernel/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68k/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -17,8 +17,6 @@
EXTRA_AFLAGS := -traditional
-include $(TOPDIR)/Rules.make
-
$(obj)/head.o: $(obj)/head.S $(obj)/m68k_defs.h
$(obj)/entry.o: $(obj)/entry.S $(obj)/m68k_defs.h
diff -urN linux-2.5.51-bk2/arch/m68k/lib/Makefile linux/arch/m68k/lib/Makefile
--- linux-2.5.51-bk2/arch/m68k/lib/Makefile Sun Sep 15 22:18:15 2002
+++ linux/arch/m68k/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -8,5 +8,3 @@
obj-y := ashldi3.o ashrdi3.o lshrdi3.o muldi3.o \
checksum.o memcmp.o memcpy.o memset.o semaphore.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/mac/Makefile linux/arch/m68k/mac/Makefile
--- linux-2.5.51-bk2/arch/m68k/mac/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/m68k/mac/Makefile Sun Dec 15 10:09:28 2002
@@ -6,5 +6,3 @@
obj-y := config.o bootparse.o macints.o iop.o via.o oss.o psc.o \
baboon.o macboing.o debug.o misc.o mac_ksyms.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/math-emu/Makefile linux/arch/m68k/math-emu/Makefile
--- linux-2.5.51-bk2/arch/m68k/math-emu/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/m68k/math-emu/Makefile Sun Dec 15 10:09:28 2002
@@ -9,5 +9,3 @@
obj-y := fp_entry.o fp_scan.o fp_util.o fp_move.o fp_movem.o \
fp_cond.o fp_arith.o fp_log.o fp_trig.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/mm/Makefile linux/arch/m68k/mm/Makefile
--- linux-2.5.51-bk2/arch/m68k/mm/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68k/mm/Makefile Sun Dec 15 10:09:28 2002
@@ -9,6 +9,3 @@
else
obj-y += sun3kmap.o sun3mmu.o
endif
-
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/mvme147/Makefile linux/arch/m68k/mvme147/Makefile
--- linux-2.5.51-bk2/arch/m68k/mvme147/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/m68k/mvme147/Makefile Sun Dec 15 10:09:28 2002
@@ -3,6 +3,3 @@
#
obj-y := config.o 147ints.o
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/m68k/mvme16x/Makefile linux/arch/m68k/mvme16x/Makefile
--- linux-2.5.51-bk2/arch/m68k/mvme16x/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/m68k/mvme16x/Makefile Sun Dec 15 10:09:28 2002
@@ -5,5 +5,3 @@
export-objs := mvme16x_ksyms.o
obj-y := config.o 16xints.o rtc.o mvme16x_ksyms.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/q40/Makefile linux/arch/m68k/q40/Makefile
--- linux-2.5.51-bk2/arch/m68k/q40/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/m68k/q40/Makefile Sun Dec 15 10:09:28 2002
@@ -3,5 +3,3 @@
#
obj-y := config.o q40ints.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/sun3/Makefile linux/arch/m68k/sun3/Makefile
--- linux-2.5.51-bk2/arch/m68k/sun3/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68k/sun3/Makefile Sun Dec 15 10:09:28 2002
@@ -8,5 +8,3 @@
obj-$(CONFIG_SUN3) += config.o mmu_emu.o leds.o dvma.o \
intersil.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/sun3/prom/Makefile linux/arch/m68k/sun3/prom/Makefile
--- linux-2.5.51-bk2/arch/m68k/sun3/prom/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/m68k/sun3/prom/Makefile Sun Dec 15 10:09:28 2002
@@ -5,5 +5,3 @@
obj-y := init.o console.o printf.o misc.o
#bootstr.o init.o misc.o segment.o console.o printf.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68k/sun3x/Makefile linux/arch/m68k/sun3x/Makefile
--- linux-2.5.51-bk2/arch/m68k/sun3x/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/m68k/sun3x/Makefile Sun Dec 15 10:09:28 2002
@@ -5,5 +5,3 @@
export-objs := sun3x_ksyms.o
obj-y := config.o time.o dvma.o prom.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68knommu/Makefile linux/arch/m68knommu/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/Makefile Sat Dec 14 12:32:10 2002
+++ linux/arch/m68knommu/Makefile Sun Dec 15 10:09:28 2002
@@ -96,8 +96,6 @@
arch/m68knommu/platform/$(PLATFORM)/
libs-y += arch/m68knommu/lib/
-include $(TOPDIR)/Rules.make
-
prepare: include/asm-$(ARCH)/asm-offsets.h
archmrproper:
diff -urN linux-2.5.51-bk2/arch/m68knommu/kernel/Makefile linux/arch/m68knommu/kernel/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/kernel/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68knommu/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -8,6 +8,3 @@
setup.o signal.o syscalltable.o sys_m68k.o time.o traps.o
obj-$(CONFIG_COMEMPCI) += comempci.o
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/m68knommu/lib/Makefile linux/arch/m68knommu/lib/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/lib/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68knommu/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -6,5 +6,3 @@
obj-y := ashldi3.o ashrdi3.o lshrdi3.o \
muldi3.o mulsi3.o divsi3.o udivsi3.o modsi3.o umodsi3.o \
checksum.o semaphore.o memcpy.o memset.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68knommu/mm/Makefile linux/arch/m68knommu/mm/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/mm/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68knommu/mm/Makefile Sun Dec 15 10:09:28 2002
@@ -3,5 +3,3 @@
#
obj-y += init.o fault.o memory.o kmap.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/m68knommu/platform/5206/Makefile linux/arch/m68knommu/platform/5206/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/platform/5206/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68knommu/platform/5206/Makefile Sun Dec 15 10:09:28 2002
@@ -19,6 +19,3 @@
obj-y := config.o
EXTRA_TARGETS := $(BOARD)/crt0_$(MODEL).o
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/m68knommu/platform/5206e/Makefile linux/arch/m68knommu/platform/5206e/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/platform/5206e/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68knommu/platform/5206e/Makefile Sun Dec 15 10:09:28 2002
@@ -19,6 +19,3 @@
obj-y := config.o
EXTRA_TARGETS := $(BOARD)/crt0_$(MODEL).o
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/m68knommu/platform/5249/Makefile linux/arch/m68knommu/platform/5249/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/platform/5249/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68knommu/platform/5249/Makefile Sun Dec 15 10:09:28 2002
@@ -19,6 +19,3 @@
obj-y := config.o
EXTRA_TARGETS := $(BOARD)/crt0_$(MODEL).o
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/m68knommu/platform/5272/Makefile linux/arch/m68knommu/platform/5272/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/platform/5272/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68knommu/platform/5272/Makefile Sun Dec 15 10:09:28 2002
@@ -19,6 +19,3 @@
obj-y := config.o
EXTRA_TARGETS := $(BOARD)/crt0_$(MODEL).o
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/m68knommu/platform/5307/Makefile linux/arch/m68knommu/platform/5307/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/platform/5307/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68knommu/platform/5307/Makefile Sun Dec 15 10:09:28 2002
@@ -22,6 +22,3 @@
ifeq ($(CONFIG_M5307),y)
EXTRA_TARGETS := $(BOARD)/crt0_$(MODEL).o
endif
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/m68knommu/platform/5407/Makefile linux/arch/m68knommu/platform/5407/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/platform/5407/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68knommu/platform/5407/Makefile Sun Dec 15 10:09:28 2002
@@ -19,6 +19,3 @@
obj-y := config.o
EXTRA_TARGETS := $(BOARD)/crt0_$(MODEL).o
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/m68knommu/platform/68328/Makefile linux/arch/m68knommu/platform/68328/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/platform/68328/Makefile Sat Dec 14 12:32:10 2002
+++ linux/arch/m68knommu/platform/68328/Makefile Sun Dec 15 10:09:28 2002
@@ -10,8 +10,6 @@
EXTRA_TARGETS := $(BOARD)/bootlogo.rh $(BOARD)/crt0_$(MODEL).o
endif
-include $(TOPDIR)/Rules.make
-
$(obj)/$(BOARD)/bootlogo.rh: $(src)/bootlogo.h
perl $(src)/bootlogo.pl < $(src)/bootlogo.h > $(obj)/$(BOARD)/bootlogo.rh
diff -urN linux-2.5.51-bk2/arch/m68knommu/platform/68360/Makefile linux/arch/m68knommu/platform/68360/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/platform/68360/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68knommu/platform/68360/Makefile Sun Dec 15 10:09:28 2002
@@ -5,6 +5,3 @@
obj-y := config.o commproc.o entry.o ints.o
EXTRA_TARGETS := $(BOARD)/crt0_$(MODEL).o
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/m68knommu/platform/68EZ328/Makefile linux/arch/m68knommu/platform/68EZ328/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/platform/68EZ328/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68knommu/platform/68EZ328/Makefile Sun Dec 15 10:09:28 2002
@@ -6,8 +6,6 @@
EXTRA_TARGETS := $(BOARD)/bootlogo.rh $(BOARD)/crt0_$(MODEL).o
-include $(TOPDIR)/Rules.make
-
$(obj)/$(BOARD)/bootlogo.rh: $(src)/bootlogo.h
perl $(src)/../68328/bootlogo.pl < $(src)/bootlogo.h \
> $(obj)/$(BOARD)/bootlogo.rh
diff -urN linux-2.5.51-bk2/arch/m68knommu/platform/68VZ328/Makefile linux/arch/m68knommu/platform/68VZ328/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/platform/68VZ328/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68knommu/platform/68VZ328/Makefile Sun Dec 15 10:09:28 2002
@@ -6,8 +6,6 @@
EXTRA_TARGETS := $(BOARD)/bootlogo.rh $(BOARD)/crt0_$(MODEL).o
-include $(TOPDIR)/Rules.make
-
$(obj)/$(BOARD)/bootlogo.rh: $(src)/../68EZ328/bootlogo.h
perl $(src)/../68328/bootlogo.pl < $(src)/../68EZ328/bootlogo.h \
> $(obj)/$(BOARD)/bootlogo.rh
diff -urN linux-2.5.51-bk2/arch/m68knommu/platform/Makefile linux/arch/m68knommu/platform/Makefile
--- linux-2.5.51-bk2/arch/m68knommu/platform/Makefile Sat Dec 14 12:31:58 2002
+++ linux/arch/m68knommu/platform/Makefile Sun Dec 15 10:09:28 2002
@@ -1,6 +1,3 @@
#
# Makefile for the arch/m68knommu/platform.
#
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/mips/arc/Makefile linux/arch/mips/arc/Makefile
--- linux-2.5.51-bk2/arch/mips/arc/Makefile Sat Dec 14 12:31:33 2002
+++ linux/arch/mips/arc/Makefile Sun Dec 15 10:09:28 2002
@@ -9,5 +9,3 @@
time.o file.o identify.o
obj-$(CONFIG_ARC_CONSOLE) += arc_con.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/au1000/common/Makefile linux/arch/mips/au1000/common/Makefile
--- linux-2.5.51-bk2/arch/mips/au1000/common/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/au1000/common/Makefile Sun Dec 15 10:09:28 2002
@@ -16,7 +16,5 @@
EXTRA_AFLAGS := $(CFLAGS)
-include $(TOPDIR)/Rules.make
-
ramdisk.o:
mkramobj ramdisk ramdisk.o
diff -urN linux-2.5.51-bk2/arch/mips/au1000/pb1000/Makefile linux/arch/mips/au1000/pb1000/Makefile
--- linux-2.5.51-bk2/arch/mips/au1000/pb1000/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/au1000/pb1000/Makefile Sun Dec 15 10:09:28 2002
@@ -7,5 +7,3 @@
#
obj-y := init.o setup.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/baget/Makefile linux/arch/mips/baget/Makefile
--- linux-2.5.51-bk2/arch/mips/baget/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/baget/Makefile Sun Dec 15 10:09:28 2002
@@ -9,8 +9,6 @@
obj-$(CONFIG_SERIAL) += vacserial.o
obj-$(CONFIG_VAC_RTC) += vacrtc.o
-include $(TOPDIR)/Rules.make
-
bagetIRQ.o : bagetIRQ.S
$(CC) $(CFLAGS) -c -o $@ $<
diff -urN linux-2.5.51-bk2/arch/mips/baget/prom/Makefile linux/arch/mips/baget/prom/Makefile
--- linux-2.5.51-bk2/arch/mips/baget/prom/Makefile Sat Dec 14 12:31:33 2002
+++ linux/arch/mips/baget/prom/Makefile Sun Dec 15 10:09:28 2002
@@ -5,5 +5,3 @@
L_TARGET := lib.a
obj-y := init.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/boot/Makefile linux/arch/mips/boot/Makefile
--- linux-2.5.51-bk2/arch/mips/boot/Makefile Sun Sep 15 22:18:48 2002
+++ linux/arch/mips/boot/Makefile Sun Dec 15 10:09:28 2002
@@ -43,5 +43,3 @@
rm -f vmlinux.ecoff
rm -f addinitrd
rm -f elf2ecoff
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/ddb5074/Makefile linux/arch/mips/ddb5074/Makefile
--- linux-2.5.51-bk2/arch/mips/ddb5074/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/ddb5074/Makefile Sun Dec 15 10:09:28 2002
@@ -6,5 +6,3 @@
EXTRA_AFLAGS := $(CFLAGS)
obj-y := setup.o irq.o time.o prom.o pci.o int-handler.o nile4.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/ddb5476/Makefile linux/arch/mips/ddb5476/Makefile
--- linux-2.5.51-bk2/arch/mips/ddb5476/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/ddb5476/Makefile Sun Dec 15 10:09:28 2002
@@ -8,5 +8,3 @@
obj-y += setup.o irq.o time.o prom.o pci.o \
int-handler.o nile4.o
obj-$(CONFIG_REMOTE_DEBUG) += dbg_io.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/ddb5xxx/common/Makefile linux/arch/mips/ddb5xxx/common/Makefile
--- linux-2.5.51-bk2/arch/mips/ddb5xxx/common/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/ddb5xxx/common/Makefile Sun Dec 15 10:09:28 2002
@@ -3,5 +3,3 @@
#
obj-y += irq.o irq_cpu.o nile4.o prom.o pci.o pci_auto.o rtc_ds1386.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/ddb5xxx/ddb5477/Makefile linux/arch/mips/ddb5xxx/ddb5477/Makefile
--- linux-2.5.51-bk2/arch/mips/ddb5xxx/ddb5477/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/ddb5xxx/ddb5477/Makefile Sun Dec 15 10:09:28 2002
@@ -9,5 +9,3 @@
obj-$(CONFIG_LL_DEBUG) += debug.o
obj-$(CONFIG_REMOTE_DEBUG) += kgdb_io.o
obj-$(CONFIG_BLK_DEV_INITRD) += ramdisk.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/dec/Makefile linux/arch/mips/dec/Makefile
--- linux-2.5.51-bk2/arch/mips/dec/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/dec/Makefile Sun Dec 15 10:09:28 2002
@@ -7,5 +7,3 @@
obj-y := int-handler.o setup.o irq.o time.o reset.o rtc-dec.o wbflush.o
obj-$(CONFIG_PROM_CONSOLE) += promcon.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/dec/boot/Makefile linux/arch/mips/dec/boot/Makefile
--- linux-2.5.51-bk2/arch/mips/dec/boot/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/dec/boot/Makefile Sun Dec 15 10:09:28 2002
@@ -10,5 +10,3 @@
clean:
rm -f nbImage
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/dec/prom/Makefile linux/arch/mips/dec/prom/Makefile
--- linux-2.5.51-bk2/arch/mips/dec/prom/Makefile Sat Dec 14 12:31:33 2002
+++ linux/arch/mips/dec/prom/Makefile Sun Dec 15 10:09:28 2002
@@ -9,7 +9,5 @@
EXTRA_AFLAGS := $(CFLAGS)
-include $(TOPDIR)/Rules.make
-
dep:
$(CPP) $(CPPFLAGS) -M *.c > .depend
diff -urN linux-2.5.51-bk2/arch/mips/gt64120/common/Makefile linux/arch/mips/gt64120/common/Makefile
--- linux-2.5.51-bk2/arch/mips/gt64120/common/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/gt64120/common/Makefile Sun Dec 15 10:09:28 2002
@@ -3,5 +3,3 @@
#
obj-y := gt_irq.o pci.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/gt64120/momenco_ocelot/Makefile linux/arch/mips/gt64120/momenco_ocelot/Makefile
--- linux-2.5.51-bk2/arch/mips/gt64120/momenco_ocelot/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/gt64120/momenco_ocelot/Makefile Sun Dec 15 10:09:28 2002
@@ -7,5 +7,3 @@
obj-y += int-handler.o irq.o pci.o prom.o reset.o setup.o
obj-$(CONFIG_REMOTE_DEBUG) += dbg_io.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/ite-boards/generic/Makefile linux/arch/mips/ite-boards/generic/Makefile
--- linux-2.5.51-bk2/arch/mips/ite-boards/generic/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/ite-boards/generic/Makefile Sun Dec 15 10:09:28 2002
@@ -21,5 +21,3 @@
endif
EXTRA_AFLAGS := $(CFLAGS)
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/ite-boards/ivr/Makefile linux/arch/mips/ite-boards/ivr/Makefile
--- linux-2.5.51-bk2/arch/mips/ite-boards/ivr/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/ite-boards/ivr/Makefile Sun Dec 15 10:09:28 2002
@@ -11,5 +11,3 @@
obj-$(CONFIG_PCI) += pci_fixup.o
obj-$(CONFIG_BLK_DEV_INITRD) += le_ramdisk.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/ite-boards/qed-4n-s01b/Makefile linux/arch/mips/ite-boards/qed-4n-s01b/Makefile
--- linux-2.5.51-bk2/arch/mips/ite-boards/qed-4n-s01b/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/ite-boards/qed-4n-s01b/Makefile Sun Dec 15 10:09:28 2002
@@ -10,5 +10,3 @@
obj-y := init.o
obj-$(CONFIG_PCI) += pci_fixup.o
obj-$(CONFIG_BLK_DEV_INITRD) += le_ramdisk.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/jazz/Makefile linux/arch/mips/jazz/Makefile
--- linux-2.5.51-bk2/arch/mips/jazz/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/jazz/Makefile Sun Dec 15 10:09:28 2002
@@ -6,5 +6,3 @@
floppy-jazz.o kbd-jazz.o
EXTRA_AFLAGS := $(CFLAGS)
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/kernel/Makefile linux/arch/mips/kernel/Makefile
--- linux-2.5.51-bk2/arch/mips/kernel/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -46,5 +46,3 @@
obj-$(CONFIG_NEW_PCI) += pci.o
obj-$(CONFIG_PCI_AUTO) += pci_auto.o
endif
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/lib/Makefile linux/arch/mips/lib/Makefile
--- linux-2.5.51-bk2/arch/mips/lib/Makefile Sun Sep 15 22:18:19 2002
+++ linux/arch/mips/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -20,5 +20,3 @@
obj-$(CONFIG_BLK_DEV_FD) += floppy-no.o floppy-std.o
obj-$(CONFIG_IDE) += ide-std.o ide-no.o
obj-$(CONFIG_PC_KEYB) += kbd-std.o kbd-no.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/math-emu/Makefile linux/arch/mips/math-emu/Makefile
--- linux-2.5.51-bk2/arch/mips/math-emu/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/math-emu/Makefile Sun Dec 15 10:09:28 2002
@@ -9,5 +9,3 @@
sp_div.o sp_mul.o sp_sub.o sp_add.o sp_fdp.o sp_cmp.o sp_logb.o \
sp_scalb.o sp_simple.o sp_tint.o sp_fint.o sp_tlong.o sp_flong.o \
dp_sqrt.o sp_sqrt.o kernel_linkage.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/mips-boards/atlas/Makefile linux/arch/mips/mips-boards/atlas/Makefile
--- linux-2.5.51-bk2/arch/mips/mips-boards/atlas/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/mips-boards/atlas/Makefile Sun Dec 15 10:09:28 2002
@@ -24,5 +24,3 @@
#
obj-y := atlas_int.o atlas_rtc.o atlas_setup.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/mips-boards/generic/Makefile linux/arch/mips/mips-boards/generic/Makefile
--- linux-2.5.51-bk2/arch/mips/mips-boards/generic/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/mips-boards/generic/Makefile Sun Dec 15 10:09:28 2002
@@ -27,5 +27,3 @@
obj-y := mipsIRQ.o pci.o reset.o display.o init.o \
memory.o printf.o cmdline.o time.o
obj-$(CONFIG_REMOTE_DEBUG) += gdb_hook.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/mips-boards/malta/Makefile linux/arch/mips/mips-boards/malta/Makefile
--- linux-2.5.51-bk2/arch/mips/mips-boards/malta/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/mips-boards/malta/Makefile Sun Dec 15 10:09:28 2002
@@ -24,5 +24,3 @@
#
obj-y := malta_int.o malta_rtc.o malta_setup.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/mm/Makefile linux/arch/mips/mm/Makefile
--- linux-2.5.51-bk2/arch/mips/mm/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/mm/Makefile Sun Dec 15 10:09:28 2002
@@ -17,5 +17,3 @@
obj-$(CONFIG_CPU_MIPS64) += mips32.o
obj-$(CONFIG_SGI_IP22) += umap.o
obj-$(CONFIG_BAGET_MIPS) += umap.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/philips/nino/Makefile linux/arch/mips/philips/nino/Makefile
--- linux-2.5.51-bk2/arch/mips/philips/nino/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/philips/nino/Makefile Sun Dec 15 10:09:28 2002
@@ -8,8 +8,6 @@
obj-$(CONFIG_BLK_DEV_INITRD) += ramdisk.o
-include $(TOPDIR)/Rules.make
-
ramdisk.o:
$(MAKE) -C ramdisk
mv ramdisk/ramdisk.o ramdisk.o
diff -urN linux-2.5.51-bk2/arch/mips/philips/nino/ramdisk/Makefile linux/arch/mips/philips/nino/ramdisk/Makefile
--- linux-2.5.51-bk2/arch/mips/philips/nino/ramdisk/Makefile Sun Sep 15 22:18:27 2002
+++ linux/arch/mips/philips/nino/ramdisk/Makefile Sun Dec 15 10:09:28 2002
@@ -8,5 +8,3 @@
ramdisk.o: ramdisk.gz ld.script
$(LD) $(LDFLAGS) -T ld.script -b binary -o $@ ramdisk.gz
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/sgi/kernel/Makefile linux/arch/mips/sgi/kernel/Makefile
--- linux-2.5.51-bk2/arch/mips/sgi/kernel/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/sgi/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -7,5 +7,3 @@
indyIRQ.o reset.o setup.o time.o
EXTRA_AFLAGS := $(CFLAGS)
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/sni/Makefile linux/arch/mips/sni/Makefile
--- linux-2.5.51-bk2/arch/mips/sni/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips/sni/Makefile Sun Dec 15 10:09:28 2002
@@ -5,5 +5,3 @@
obj-y := int-handler.o io.o irq.o pci.o pcimt_scache.o reset.o setup.o
EXTRA_AFLAGS := $(CFLAGS)
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips/tools/Makefile linux/arch/mips/tools/Makefile
--- linux-2.5.51-bk2/arch/mips/tools/Makefile Sun Sep 15 22:18:22 2002
+++ linux/arch/mips/tools/Makefile Sun Dec 15 10:09:28 2002
@@ -21,5 +21,3 @@
mrproper:
rm -f offset.[hs] $(TARGET).new
rm -f $(TARGET)
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips64/arc/Makefile linux/arch/mips64/arc/Makefile
--- linux-2.5.51-bk2/arch/mips64/arc/Makefile Sat Dec 14 12:31:33 2002
+++ linux/arch/mips64/arc/Makefile Sun Dec 15 10:09:28 2002
@@ -8,5 +8,3 @@
obj-$(CONFIG_ARC_MEMORY) += memory.o
obj-$(CONFIG_ARC_CONSOLE) += arc_con.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips64/boot/Makefile linux/arch/mips64/boot/Makefile
--- linux-2.5.51-bk2/arch/mips64/boot/Makefile Sun Sep 15 22:18:53 2002
+++ linux/arch/mips64/boot/Makefile Sun Dec 15 10:09:28 2002
@@ -31,5 +31,3 @@
mrproper:
rm -f vmlinux.ecoff addinitrd elf2ecoff
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips64/kernel/Makefile linux/arch/mips64/kernel/Makefile
--- linux-2.5.51-bk2/arch/mips64/kernel/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips64/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -19,5 +19,3 @@
AFLAGS_r4k_genex.o := -P
AFLAGS_r4k_tlb_glue.o := -P
EXTRA_AFLAGS := $(CFLAGS)
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips64/lib/Makefile linux/arch/mips64/lib/Makefile
--- linux-2.5.51-bk2/arch/mips64/lib/Makefile Sun Sep 15 22:18:25 2002
+++ linux/arch/mips64/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -10,5 +10,3 @@
floppy-no.o ide-std.o ide-no.o kbd-std.o kbd-no.o rtc-std.o \
rtc-no.o memset.o memcpy.o strlen_user.o strncpy_user.o \
strnlen_user.o watch.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips64/math-emu/Makefile linux/arch/mips64/math-emu/Makefile
--- linux-2.5.51-bk2/arch/mips64/math-emu/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips64/math-emu/Makefile Sun Dec 15 10:09:28 2002
@@ -9,5 +9,3 @@
sp_div.o sp_mul.o sp_sub.o sp_add.o sp_fdp.o sp_cmp.o sp_logb.o \
sp_scalb.o sp_simple.o sp_tint.o sp_fint.o sp_tlong.o sp_flong.o \
dp_sqrt.o sp_sqrt.o kernel_linkage.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips64/mips-boards/atlas/Makefile linux/arch/mips64/mips-boards/atlas/Makefile
--- linux-2.5.51-bk2/arch/mips64/mips-boards/atlas/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips64/mips-boards/atlas/Makefile Sun Dec 15 10:09:28 2002
@@ -24,5 +24,3 @@
#
obj-y := atlas_int.o atlas_rtc.o atlas_setup.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips64/mips-boards/generic/Makefile linux/arch/mips64/mips-boards/generic/Makefile
--- linux-2.5.51-bk2/arch/mips64/mips-boards/generic/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips64/mips-boards/generic/Makefile Sun Dec 15 10:09:28 2002
@@ -27,5 +27,3 @@
obj-$(CONFIG_REMOTE_DEBUG) += gdb_hook.o
EXTRA_AFLAGS := $(CFLAGS)
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips64/mips-boards/malta/Makefile linux/arch/mips64/mips-boards/malta/Makefile
--- linux-2.5.51-bk2/arch/mips64/mips-boards/malta/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips64/mips-boards/malta/Makefile Sun Dec 15 10:09:28 2002
@@ -24,5 +24,3 @@
#
obj-y := malta_int.o malta_rtc.o malta_setup.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips64/mm/Makefile linux/arch/mips64/mm/Makefile
--- linux-2.5.51-bk2/arch/mips64/mm/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips64/mm/Makefile Sun Dec 15 10:09:28 2002
@@ -12,5 +12,3 @@
obj-$(CONFIG_CPU_NEVADA) += r4xx0.o
obj-$(CONFIG_CPU_R10000) += andes.o
obj-$(CONFIG_SGI_IP22) += umap.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips64/sgi-ip22/Makefile linux/arch/mips64/sgi-ip22/Makefile
--- linux-2.5.51-bk2/arch/mips64/sgi-ip22/Makefile Sat Dec 14 12:31:33 2002
+++ linux/arch/mips64/sgi-ip22/Makefile Sun Dec 15 10:09:28 2002
@@ -9,5 +9,3 @@
obj-y += ip22-berr.o ip22-mc.o ip22-sc.o ip22-hpc.o ip22-int.o ip22-rtc.o \
ip22-setup.o system.o ip22-timer.o ip22-irq.o ip22-reset.o time.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips64/sgi-ip27/Makefile linux/arch/mips64/sgi-ip27/Makefile
--- linux-2.5.51-bk2/arch/mips64/sgi-ip27/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips64/sgi-ip27/Makefile Sun Dec 15 10:09:28 2002
@@ -7,5 +7,3 @@
obj-y := ip27-berr.o ip27-console.o ip27-irq.o ip27-init.o ip27-irq-glue.o \
ip27-klconfig.o ip27-klnuma.o ip27-memory.o ip27-nmi.o ip27-pci.o \
ip27-pci-dma.o ip27-reset.o ip27-setup.o ip27-timer.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips64/sgi-ip32/Makefile linux/arch/mips64/sgi-ip32/Makefile
--- linux-2.5.51-bk2/arch/mips64/sgi-ip32/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/mips64/sgi-ip32/Makefile Sun Dec 15 10:09:28 2002
@@ -11,5 +11,3 @@
obj-$(CONFIG_PCI) += ip32-pci.o ip32-pci-dma.o
EXTRA_AFLAGS := $(CFLAGS)
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/mips64/tools/Makefile linux/arch/mips64/tools/Makefile
--- linux-2.5.51-bk2/arch/mips64/tools/Makefile Sun Sep 15 22:18:20 2002
+++ linux/arch/mips64/tools/Makefile Sun Dec 15 10:09:28 2002
@@ -21,5 +21,3 @@
mrproper:
rm -f offset.[hs] $(TARGET).new
rm -f $(TARGET)
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc/4xx_io/Makefile linux/arch/ppc/4xx_io/Makefile
--- linux-2.5.51-bk2/arch/ppc/4xx_io/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/ppc/4xx_io/Makefile Sun Dec 15 10:09:28 2002
@@ -4,5 +4,3 @@
obj-$(CONFIG_SERIAL_SICC) += serial_sicc.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc/8260_io/Makefile linux/arch/ppc/8260_io/Makefile
--- linux-2.5.51-bk2/arch/ppc/8260_io/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/ppc/8260_io/Makefile Sun Dec 15 10:09:28 2002
@@ -6,5 +6,3 @@
obj-$(CONFIG_FEC_ENET) += fcc_enet.o
obj-$(CONFIG_SCC_ENET) += enet.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc/8xx_io/Makefile linux/arch/ppc/8xx_io/Makefile
--- linux-2.5.51-bk2/arch/ppc/8xx_io/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/ppc/8xx_io/Makefile Sun Dec 15 10:09:28 2002
@@ -10,5 +10,3 @@
obj-$(CONFIG_SCC_ENET) += enet.o
obj-$(CONFIG_UCODE_PATCH) += micropatch.o
obj-$(CONFIG_HTDMSOUND) += cs4218_tdm.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc/amiga/Makefile linux/arch/ppc/amiga/Makefile
--- linux-2.5.51-bk2/arch/ppc/amiga/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/ppc/amiga/Makefile Sun Dec 15 10:09:28 2002
@@ -8,5 +8,3 @@
chipram.o amiga_ksyms.o
obj-$(CONFIG_AMIGA_PCMCIA) += pcmcia.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc/boot/utils/Makefile linux/arch/ppc/boot/utils/Makefile
--- linux-2.5.51-bk2/arch/ppc/boot/utils/Makefile Sun Sep 15 22:18:25 2002
+++ linux/arch/ppc/boot/utils/Makefile Sun Dec 15 10:09:28 2002
@@ -18,5 +18,3 @@
clean:
rm -f $(UTILS)
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc/iSeries/Makefile linux/arch/ppc/iSeries/Makefile
--- linux-2.5.51-bk2/arch/ppc/iSeries/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/ppc/iSeries/Makefile Sun Dec 15 10:09:28 2002
@@ -7,8 +7,6 @@
obj-$(CONFIG_PCI) += XmPciLpEvent.o iSeries_FlightRecorder.o iSeries_IoMmTable.o iSeries_VpdInfo.o iSeries_fixup.o iSeries_irq.o iSeries_pci.o iSeries_pci_proc.o iSeries_reset_device.o
-include $(TOPDIR)/Rules.make
-
LparData.c:: ReleaseData.h
ReleaseData.h: $(TOPDIR)/Makefile
diff -urN linux-2.5.51-bk2/arch/ppc/kernel/Makefile linux/arch/ppc/kernel/Makefile
--- linux-2.5.51-bk2/arch/ppc/kernel/Makefile Sat Dec 14 12:32:04 2002
+++ linux/arch/ppc/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -40,7 +40,5 @@
endif
obj-$(CONFIG_PPC_ISERIES) += iSeries_misc.o
-include $(TOPDIR)/Rules.make
-
find_name : find_name.c
$(HOSTCC) $(HOSTCFLAGS) -o find_name find_name.c
diff -urN linux-2.5.51-bk2/arch/ppc/lib/Makefile linux/arch/ppc/lib/Makefile
--- linux-2.5.51-bk2/arch/ppc/lib/Makefile Sat Dec 14 12:31:44 2002
+++ linux/arch/ppc/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -7,5 +7,3 @@
obj-y := checksum.o string.o strcase.o dec_and_lock.o div64.o
obj-$(CONFIG_SMP) += locks.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc/math-emu/Makefile linux/arch/ppc/math-emu/Makefile
--- linux-2.5.51-bk2/arch/ppc/math-emu/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/ppc/math-emu/Makefile Sun Dec 15 10:09:28 2002
@@ -11,5 +11,3 @@
mcrfs.o mffs.o mtfsb0.o mtfsb1.o \
mtfsf.o mtfsfi.o stfiwx.o stfs.o \
udivmodti4.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc/mm/Makefile linux/arch/ppc/mm/Makefile
--- linux-2.5.51-bk2/arch/ppc/mm/Makefile Sat Dec 14 12:32:00 2002
+++ linux/arch/ppc/mm/Makefile Sun Dec 15 10:09:28 2002
@@ -13,5 +13,3 @@
obj-$(CONFIG_PPC_ISERIES) += iSeries_hashtable.o iSeries_mmu.o tlb.o
obj-$(CONFIG_40x) += 4xx_mmu.o
obj-$(CONFIG_NOT_COHERENT_CACHE) += cachemap.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc/platforms/4xx/Makefile linux/arch/ppc/platforms/4xx/Makefile
--- linux-2.5.51-bk2/arch/ppc/platforms/4xx/Makefile Sat Dec 14 12:31:40 2002
+++ linux/arch/ppc/platforms/4xx/Makefile Sun Dec 15 10:09:28 2002
@@ -15,5 +15,3 @@
obj-$(CONFIG_REDWOOD_4) += ibmstb3.o
obj-$(CONFIG_REDWOOD_5) += ibmstb4.o
obj-$(CONFIG_NP405H) += ibmnp405h.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc/platforms/Makefile linux/arch/ppc/platforms/Makefile
--- linux-2.5.51-bk2/arch/ppc/platforms/Makefile Sat Dec 14 12:32:00 2002
+++ linux/arch/ppc/platforms/Makefile Sun Dec 15 10:09:28 2002
@@ -53,5 +53,3 @@
obj-$(CONFIG_ALL_PPC) += pmac_smp.o chrp_smp.o
obj-$(CONFIG_PPC_ISERIES) += iSeries_smp.o
endif
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc/syslib/Makefile linux/arch/ppc/syslib/Makefile
--- linux-2.5.51-bk2/arch/ppc/syslib/Makefile Sat Dec 14 12:32:00 2002
+++ linux/arch/ppc/syslib/Makefile Sun Dec 15 10:09:28 2002
@@ -62,7 +62,5 @@
obj-$(CONFIG_8260) += m8260_setup.o ppc8260_pic.o
obj-$(CONFIG_BOOTX_TEXT) += btext.o
-include $(TOPDIR)/Rules.make
-
find_name : find_name.c
$(HOSTCC) $(HOSTCFLAGS) -o find_name find_name.c
diff -urN linux-2.5.51-bk2/arch/ppc/xmon/Makefile linux/arch/ppc/xmon/Makefile
--- linux-2.5.51-bk2/arch/ppc/xmon/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/ppc/xmon/Makefile Sun Dec 15 10:09:28 2002
@@ -6,5 +6,3 @@
obj-y := start.o
endif
obj-y += xmon.o ppc-dis.o ppc-opc.o subr_prf.o setjmp.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc64/kernel/Makefile linux/arch/ppc64/kernel/Makefile
--- linux-2.5.51-bk2/arch/ppc64/kernel/Makefile Sat Dec 14 12:32:10 2002
+++ linux/arch/ppc64/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -38,6 +38,3 @@
obj-$(CONFIG_PROFILING) += profile.o
obj-y += prom.o lmb.o rtas.o rtas-proc.o chrp_setup.o i8259.o
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/ppc64/lib/Makefile linux/arch/ppc64/lib/Makefile
--- linux-2.5.51-bk2/arch/ppc64/lib/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/ppc64/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -6,5 +6,3 @@
obj-y := checksum.o dec_and_lock.o string.o strcase.o copypage.o \
memcpy.o copyuser.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc64/mm/Makefile linux/arch/ppc64/mm/Makefile
--- linux-2.5.51-bk2/arch/ppc64/mm/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/ppc64/mm/Makefile Sun Dec 15 10:09:28 2002
@@ -6,5 +6,3 @@
obj-y := fault.o init.o extable.o imalloc.o
obj-$(CONFIG_DISCONTIGMEM) += numa.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/ppc64/xmon/Makefile linux/arch/ppc64/xmon/Makefile
--- linux-2.5.51-bk2/arch/ppc64/xmon/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/ppc64/xmon/Makefile Sun Dec 15 10:09:28 2002
@@ -3,5 +3,3 @@
EXTRA_CFLAGS = -mno-minimal-toc
obj-y := start.o xmon.o ppc-dis.o ppc-opc.o subr_prf.o setjmp.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/s390/boot/Makefile linux/arch/s390/boot/Makefile
--- linux-2.5.51-bk2/arch/s390/boot/Makefile Sat Dec 14 12:32:04 2002
+++ linux/arch/s390/boot/Makefile Sun Dec 15 10:09:28 2002
@@ -4,8 +4,6 @@
EXTRA_AFLAGS := -traditional
-include $(TOPDIR)/Rules.make
-
quiet_cmd_listing = OBJDUMP $(echo_target)
cmd_listing = $(OBJDUMP) --disassemble --disassemble-all \
--disassemble-zeroes --reloc vmlinux > $@
diff -urN linux-2.5.51-bk2/arch/s390/kernel/Makefile linux/arch/s390/kernel/Makefile
--- linux-2.5.51-bk2/arch/s390/kernel/Makefile Sat Dec 14 12:32:04 2002
+++ linux/arch/s390/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -17,5 +17,3 @@
# Kernel debugging
#
obj-$(CONFIG_REMOTE_DEBUG) += gdb-stub.o #gdb-low.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/s390/lib/Makefile linux/arch/s390/lib/Makefile
--- linux-2.5.51-bk2/arch/s390/lib/Makefile Sat Dec 14 12:31:37 2002
+++ linux/arch/s390/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -7,6 +7,3 @@
EXTRA_AFLAGS := -traditional
obj-y = delay.o memset.o strcmp.o strncpy.o uaccess.o
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/s390/math-emu/Makefile linux/arch/s390/math-emu/Makefile
--- linux-2.5.51-bk2/arch/s390/math-emu/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/s390/math-emu/Makefile Sun Dec 15 10:09:28 2002
@@ -6,7 +6,3 @@
EXTRA_CFLAGS = -I. -I$(TOPDIR)/include/math-emu -w
EXTRA_AFLAGS := -traditional
-
-include $(TOPDIR)/Rules.make
-
-
diff -urN linux-2.5.51-bk2/arch/s390/mm/Makefile linux/arch/s390/mm/Makefile
--- linux-2.5.51-bk2/arch/s390/mm/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/s390/mm/Makefile Sun Dec 15 10:09:28 2002
@@ -3,5 +3,3 @@
#
obj-y := init.o fault.o ioremap.o extable.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/s390x/boot/Makefile linux/arch/s390x/boot/Makefile
--- linux-2.5.51-bk2/arch/s390x/boot/Makefile Sat Dec 14 12:32:04 2002
+++ linux/arch/s390x/boot/Makefile Sun Dec 15 10:09:28 2002
@@ -4,8 +4,6 @@
EXTRA_AFLAGS := -traditional
-include $(TOPDIR)/Rules.make
-
quiet_cmd_listing = OBJDUMP $(echo_target)
cmd_listing = $(OBJDUMP) --disassemble --disassemble-all \
--disassemble-zeroes --reloc vmlinux > $@
diff -urN linux-2.5.51-bk2/arch/s390x/kernel/Makefile linux/arch/s390x/kernel/Makefile
--- linux-2.5.51-bk2/arch/s390x/kernel/Makefile Sat Dec 14 12:32:04 2002
+++ linux/arch/s390x/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -24,8 +24,6 @@
exec32.o exec_domain32.o
obj-$(CONFIG_BINFMT_ELF32) += binfmt_elf32.o
-include $(TOPDIR)/Rules.make
-
#
# This is just to get the dependencies...
#
diff -urN linux-2.5.51-bk2/arch/s390x/lib/Makefile linux/arch/s390x/lib/Makefile
--- linux-2.5.51-bk2/arch/s390x/lib/Makefile Sat Dec 14 12:31:37 2002
+++ linux/arch/s390x/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -7,6 +7,3 @@
EXTRA_AFLAGS := -traditional
obj-y = delay.o memset.o strcmp.o strncpy.o uaccess.o
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/s390x/mm/Makefile linux/arch/s390x/mm/Makefile
--- linux-2.5.51-bk2/arch/s390x/mm/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/s390x/mm/Makefile Sun Dec 15 10:09:28 2002
@@ -3,5 +3,3 @@
#
obj-y := init.o fault.o ioremap.o extable.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/sh/kernel/Makefile linux/arch/sh/kernel/Makefile
--- linux-2.5.51-bk2/arch/sh/kernel/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/sh/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -72,5 +72,3 @@
ifeq ($(CONFIG_SH_GENERIC),y)
obj-y += $(machine-specific-objs)
endif
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/sh/lib/Makefile linux/arch/sh/lib/Makefile
--- linux-2.5.51-bk2/arch/sh/lib/Makefile Sat Dec 14 12:31:44 2002
+++ linux/arch/sh/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -5,5 +5,3 @@
L_TARGET = lib.a
obj-y = delay.o memcpy.o memset.o memmove.o memchr.o \
checksum.o strcasecmp.o strlen.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/sh/mm/Makefile linux/arch/sh/mm/Makefile
--- linux-2.5.51-bk2/arch/sh/mm/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/sh/mm/Makefile Sun Dec 15 10:09:28 2002
@@ -6,5 +6,3 @@
obj-$(CONFIG_CPU_SH3) += cache-sh3.o
obj-$(CONFIG_CPU_SH4) += cache-sh4.o __clear_user_page-sh4.o __copy_user_page-sh4.o ioremap.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/sh/stboards/Makefile linux/arch/sh/stboards/Makefile
--- linux-2.5.51-bk2/arch/sh/stboards/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/sh/stboards/Makefile Sun Dec 15 10:09:28 2002
@@ -3,5 +3,3 @@
#
obj-y := irq.o setup.o mach.o led.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/sparc64/kernel/Makefile linux/arch/sparc64/kernel/Makefile
--- linux-2.5.51-bk2/arch/sparc64/kernel/Makefile Sat Dec 14 12:32:10 2002
+++ linux/arch/sparc64/kernel/Makefile Sun Dec 15 10:10:20 2002
@@ -36,7 +36,5 @@
CMODEL_CFLAG := -m64 -mcmodel=medlow
endif
-include $(TOPDIR)/Rules.make
-
head.o: head.S ttable.S itlb_base.S dtlb_base.S dtlb_backend.S dtlb_prot.S \
etrap.S rtrap.S winfixup.S entry.S
diff -urN linux-2.5.51-bk2/arch/um/drivers/Makefile linux/arch/um/drivers/Makefile
--- linux-2.5.51-bk2/arch/um/drivers/Makefile Sat Dec 14 12:32:02 2002
+++ linux/arch/um/drivers/Makefile Sun Dec 15 10:09:28 2002
@@ -60,8 +60,6 @@
null.o pty.o tty.o xterm.o
USER_OBJS := $(foreach file,$(USER_OBJS),arch/um/drivers/$(file))
-include $(TOPDIR)/Rules.make
-
$(USER_OBJS) : %.o: %.c
$(CC) $(CFLAGS_$@) $(USER_CFLAGS) -c -o $@ $<
diff -urN linux-2.5.51-bk2/arch/um/kernel/Makefile linux/arch/um/kernel/Makefile
--- linux-2.5.51-bk2/arch/um/kernel/Makefile Sat Dec 14 12:32:02 2002
+++ linux/arch/um/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -10,7 +10,7 @@
obj-$(CONFIG_BLK_DEV_INITRD) += initrd_kern.o initrd_user.o
-# user_syms.o not included here because Rules.make has its own ideas about
+# user_syms.o not included here because kbuild has its own ideas about
# building anything in export-objs
USER_OBJS := $(filter %_user.o,$(obj-y)) config.o helper.o process.o \
@@ -39,8 +39,6 @@
CFLAGS_frame.o := $(patsubst -fomit-frame-pointer,,$(USER_CFLAGS))
-include $(TOPDIR)/Rules.make
-
$(USER_OBJS) : %.o: %.c
$(CC) $(CFLAGS_$@) $(USER_CFLAGS) -c -o $@ $<
diff -urN linux-2.5.51-bk2/arch/um/os-Linux/Makefile linux/arch/um/os-Linux/Makefile
--- linux-2.5.51-bk2/arch/um/os-Linux/Makefile Sat Dec 14 12:32:02 2002
+++ linux/arch/um/os-Linux/Makefile Sun Dec 15 10:09:28 2002
@@ -7,8 +7,6 @@
USER_OBJS := $(foreach file,$(obj-y),arch/um/os-Linux/$(file))
-include $(TOPDIR)/Rules.make
-
$(USER_OBJS) : %.o: %.c
$(CC) $(CFLAGS_$@) $(USER_CFLAGS) -c -o $@ $<
diff -urN linux-2.5.51-bk2/arch/um/os-Linux/drivers/Makefile linux/arch/um/os-Linux/drivers/Makefile
--- linux-2.5.51-bk2/arch/um/os-Linux/drivers/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/um/os-Linux/drivers/Makefile Sun Dec 15 10:09:28 2002
@@ -14,7 +14,5 @@
USER_OBJS = $(filter %_user.o,$(obj-y) $(USER_SINGLE_OBJS))
-include $(TOPDIR)/Rules.make
-
$(USER_OBJS) : %.o: %.c
$(CC) $(CFLAGS_$@) $(USER_CFLAGS) -c -o $@ $<
diff -urN linux-2.5.51-bk2/arch/um/ptproxy/Makefile linux/arch/um/ptproxy/Makefile
--- linux-2.5.51-bk2/arch/um/ptproxy/Makefile Sat Dec 14 12:31:40 2002
+++ linux/arch/um/ptproxy/Makefile Sun Dec 15 10:09:28 2002
@@ -2,8 +2,6 @@
USER_OBJS := $(foreach file,$(obj-y),arch/um/ptproxy/$(file))
-include $(TOPDIR)/Rules.make
-
$(USER_OBJS) : %.o: %.c
$(CC) $(CFLAGS_$@) $(USER_CFLAGS) -c -o $@ $<
diff -urN linux-2.5.51-bk2/arch/um/sys-i386/Makefile linux/arch/um/sys-i386/Makefile
--- linux-2.5.51-bk2/arch/um/sys-i386/Makefile Sat Dec 14 12:32:02 2002
+++ linux/arch/um/sys-i386/Makefile Sun Dec 15 10:09:28 2002
@@ -10,8 +10,6 @@
SYMLINKS = semaphore.c checksum.S extable.c highmem.c
-include $(TOPDIR)/Rules.make
-
$(USER_OBJS) : %.o: %.c
$(CC) $(CFLAGS_$@) $(USER_CFLAGS) -c -o $@ $<
diff -urN linux-2.5.51-bk2/arch/um/sys-i386/util/Makefile linux/arch/um/sys-i386/util/Makefile
--- linux-2.5.51-bk2/arch/um/sys-i386/util/Makefile Sat Dec 14 12:31:42 2002
+++ linux/arch/um/sys-i386/util/Makefile Sun Dec 15 10:09:28 2002
@@ -4,8 +4,6 @@
mk_sc-objs := mk_sc.o
-include $(TOPDIR)/Rules.make
-
$(obj)/mk_thread : $(obj)/mk_thread_kern.o $(obj)/mk_thread_user.o
$(CC) $(CFLAGS) -o $@ $^
diff -urN linux-2.5.51-bk2/arch/um/sys-ia64/Makefile linux/arch/um/sys-ia64/Makefile
--- linux-2.5.51-bk2/arch/um/sys-ia64/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/um/sys-ia64/Makefile Sun Dec 15 10:09:28 2002
@@ -22,5 +22,3 @@
@$(MAKEBOOT) dep
modules:
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/um/sys-ppc/Makefile linux/arch/um/sys-ppc/Makefile
--- linux-2.5.51-bk2/arch/um/sys-ppc/Makefile Sat Dec 14 12:31:35 2002
+++ linux/arch/um/sys-ppc/Makefile Sun Dec 15 10:09:28 2002
@@ -76,5 +76,3 @@
dep:
modules:
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/um/util/Makefile linux/arch/um/util/Makefile
--- linux-2.5.51-bk2/arch/um/util/Makefile Sat Dec 14 12:31:42 2002
+++ linux/arch/um/util/Makefile Sun Dec 15 10:09:28 2002
@@ -1,7 +1,5 @@
EXTRA_TARGETS := mk_task mk_task_kern.o
-include $(TOPDIR)/Rules.make
-
$(obj)/mk_task: $(obj)/mk_task_user.o $(obj)/mk_task_kern.o
$(CC) -o $@ $^
diff -urN linux-2.5.51-bk2/arch/v850/Makefile linux/arch/v850/Makefile
--- linux-2.5.51-bk2/arch/v850/Makefile Sat Dec 14 12:32:06 2002
+++ linux/arch/v850/Makefile Sun Dec 15 10:09:28 2002
@@ -31,9 +31,6 @@
libs-y += $(arch_dir)/lib/
-include $(TOPDIR)/Rules.make
-
-
# Deal with the initial contents of the root device
ifdef ROOT_FS_IMAGE
core-y += root_fs_image.o
diff -urN linux-2.5.51-bk2/arch/v850/kernel/Makefile linux/arch/v850/kernel/Makefile
--- linux-2.5.51-bk2/arch/v850/kernel/Makefile Sat Dec 14 12:32:06 2002
+++ linux/arch/v850/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -34,6 +34,3 @@
# feature-specific code
obj-$(CONFIG_V850E_MA1_HIGHRES_TIMER) += highres_timer.o
obj-$(CONFIG_PROC_FS) += procfs.o
-
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/v850/lib/Makefile linux/arch/v850/lib/Makefile
--- linux-2.5.51-bk2/arch/v850/lib/Makefile Sat Dec 14 12:31:59 2002
+++ linux/arch/v850/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -5,5 +5,3 @@
L_TARGET = lib.a
obj-y = ashrdi3.o ashldi3.o lshrdi3.o muldi3.o negdi2.o \
checksum.o memcpy.o memset.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/x86_64/boot/Makefile linux/arch/x86_64/boot/Makefile
--- linux-2.5.51-bk2/arch/x86_64/boot/Makefile Sat Dec 14 12:31:48 2002
+++ linux/arch/x86_64/boot/Makefile Sun Dec 15 10:09:28 2002
@@ -36,8 +36,6 @@
boot: bzImage
-include $(TOPDIR)/Rules.make
-
# ---------------------------------------------------------------------------
$(obj)/zImage: IMAGE_OFFSET := 0x1000
diff -urN linux-2.5.51-bk2/arch/x86_64/boot/compressed/Makefile linux/arch/x86_64/boot/compressed/Makefile
--- linux-2.5.51-bk2/arch/x86_64/boot/compressed/Makefile Sat Dec 14 12:31:42 2002
+++ linux/arch/x86_64/boot/compressed/Makefile Sun Dec 15 10:09:28 2002
@@ -14,8 +14,6 @@
CFLAGS := -m32 -D__KERNEL__ -I$(TOPDIR)/include -O2
LDFLAGS := -m elf_i386
-include $(TOPDIR)/Rules.make
-
LDFLAGS_vmlinux := -Ttext $(IMAGE_OFFSET) -e startup_32 -m elf_i386
$(obj)/vmlinux: $(obj)/head.o $(obj)/misc.o $(obj)/piggy.o FORCE
diff -urN linux-2.5.51-bk2/arch/x86_64/ia32/Makefile linux/arch/x86_64/ia32/Makefile
--- linux-2.5.51-bk2/arch/x86_64/ia32/Makefile Sat Dec 14 12:31:42 2002
+++ linux/arch/x86_64/ia32/Makefile Sun Dec 15 10:09:28 2002
@@ -7,5 +7,3 @@
obj-$(CONFIG_IA32_EMULATION) := ia32entry.o sys_ia32.o ia32_ioctl.o \
ia32_signal.o \
ia32_binfmt.o fpu32.o socket32.o ptrace32.o ipc32.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/x86_64/kernel/Makefile linux/arch/x86_64/kernel/Makefile
--- linux-2.5.51-bk2/arch/x86_64/kernel/Makefile Sat Dec 14 12:31:48 2002
+++ linux/arch/x86_64/kernel/Makefile Sun Dec 15 10:09:28 2002
@@ -24,6 +24,3 @@
obj-$(CONFIG_DUMMY_IOMMU) += pci-nommu.o
EXTRA_AFLAGS := -traditional
-
-include $(TOPDIR)/Rules.make
-
diff -urN linux-2.5.51-bk2/arch/x86_64/lib/Makefile linux/arch/x86_64/lib/Makefile
--- linux-2.5.51-bk2/arch/x86_64/lib/Makefile Sat Dec 14 12:31:42 2002
+++ linux/arch/x86_64/lib/Makefile Sun Dec 15 10:09:28 2002
@@ -17,5 +17,3 @@
obj-$(CONFIG_IO_DEBUG) += iodebug.o
obj-$(CONFIG_HAVE_DEC_LOCK) += dec_and_lock.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/x86_64/mm/Makefile linux/arch/x86_64/mm/Makefile
--- linux-2.5.51-bk2/arch/x86_64/mm/Makefile Sat Dec 14 12:31:44 2002
+++ linux/arch/x86_64/mm/Makefile Sun Dec 15 10:09:28 2002
@@ -5,5 +5,3 @@
export-objs := pageattr.o
obj-y := init.o fault.o ioremap.o extable.o modutil.o pageattr.o
-
-include $(TOPDIR)/Rules.make
diff -urN linux-2.5.51-bk2/arch/x86_64/pci/Makefile linux/arch/x86_64/pci/Makefile
--- linux-2.5.51-bk2/arch/x86_64/pci/Makefile Sat Dec 14 12:31:42 2002
+++ linux/arch/x86_64/pci/Makefile Sun Dec 15 10:09:28 2002
@@ -12,5 +12,3 @@
obj-y += irq.o common.o
-
-include $(TOPDIR)/Rules.make
^ permalink raw reply
* Re: How to direct packets to my server. DOES THIS LOOK RIGHT?
From: Zoilo @ 2002-12-15 15:08 UTC (permalink / raw)
To: Joel Linuxdude; +Cc: netfilter
In-Reply-To: <F22R4BnmJZBRZ2ZBHQB0001f322@hotmail.com>
Joel Linuxdude wrote:
> My Netfilter firewall (unfortunately) is running also
> my Apache web server, FTP server and Telnet daemon.
> I honestly think this is ok but its confusing me with
> the whole firewall aspect.
Yes and no, i.e. I can agree with the concept, but I really disagree
with the provided services.
It is OK to provide some services from your firewall, provided that they
are *secure* services. I would recommend to replace telnet and ftp by
openssh, as telnet and FTP are both serious security hazards.
Openssh provides sshd (daemon running on your firewall), ssh (secure
telnet replacement), sftp (secure ftp replacement) and scp (secure
remote copy); "grep ssh /etc/services" and "grep sftp /etc/services"
will tell you which ports to open. In case you need to login from a
Windoze-machine, a utility called "putty" is available on the internet
for download.
Also make sure that your Apache server software is up-to-date, and *if*
you use PHP (or you don't, but it is enabled), then carefully check the
settings in /etc/php.ini: in particular register_globals and
register_argc_argv should be set to Off, unless you want the whole world
to be able to setup an environment for your PHP scripts....
With these precautions, I believe that your firewall would be quite well
protected.
--
Z.
---------------------------------------------------------
If all you have is a hammer, everything looks like a nail
---------------------------------------------------------
^ permalink raw reply
* Re: problem with Andrew's patch ext3
From: Vergoz Michael (SYSDOOR) @ 2002-12-15 15:15 UTC (permalink / raw)
To: Octave, Andrew Morton; +Cc: linux-kernel, ext3-users
In-Reply-To: <20021215144050.GY12395@ovh.net>
Hi,
@@ -454,6 +456,7 @@ static struct super_operations ext3_sops
delete_inode: ext3_delete_inode, /* BKL not held. We take it */
put_super: ext3_put_super, /* BKL held */
write_super: ext3_write_super, /* BKL held */
+ sync_fs: ext3_sync_fs,
write_super_lockfs: ext3_write_super_lockfs, /* BKL not held. Take it
*/
unlockfs: ext3_unlockfs, /* BKL not held. We take it */
statfs: ext3_statfs, /* BKL held */
@@ -1577,24 +1580,22 @@ int ext3_force_commit(struct super_block
* This implicitly triggers the writebehind on sync().
*/
Someone can explain to me how he can put a sync_fs label into a
super_operation structure ?
The segfault is normal.
==> Linux/Documentation/filesystems/vfs.txt
177 struct super_operations {
178 void (*read_inode) (struct inode *);
179 void (*write_inode) (struct inode *, int);
180 void (*put_inode) (struct inode *);
181 void (*delete_inode) (struct inode *);
182 int (*notify_change) (struct dentry *, struct iattr *);
183 void (*put_super) (struct super_block *);
184 void (*write_super) (struct super_block *);
185 int (*statfs) (struct super_block *, struct statfs *, int);
186 int (*remount_fs) (struct super_block *, int *, char *);
187 void (*clear_inode) (struct inode *);
188 };
Well,
==> Linux/Documentation/filesystems/vfs.txt
327 struct file_operations {
328 loff_t (*llseek) (struct file *, loff_t, int);
329 ssize_t (*read) (struct file *, char *, size_t, loff_t *);
330 ssize_t (*write) (struct file *, const char *, size_t, loff_t
*);
331 int (*readdir) (struct file *, void *, filldir_t);
332 unsigned int (*poll) (struct file *, struct poll_table_struct
*);
333 int (*ioctl) (struct inode *, struct file *, unsigned int,
unsigned long);
334 int (*mmap) (struct file *, struct vm_area_struct *);
335 int (*open) (struct inode *, struct file *);
336 int (*release) (struct inode *, struct file *);
337 int (*fsync) (struct file *, struct dentry *);
338 int (*fasync) (struct file *, int);
339 int (*check_media_change) (kdev_t dev);
340 int (*revalidate) (kdev_t dev);
341 int (*lock) (struct file *, int, struct file_lock *);
342 };
You can only use a sync function into the file_operation structure.
Well the patch can't work.
Octave, anyway you don't need this patch :P
Everything is already implemented.
Or perhaps i'v lost something ?!
Regards,
Michael
============================================================================
===
===============================ORIGINAL
MESSAGE===============================
============================================================================
===
From: "Octave" <oles@ovh.net>
To: "Andrew Morton" <akpm@digeo.com>
Cc: <linux-kernel@vger.kernel.org>; <ext3-users@redhat.com>
Sent: Sunday, December 15, 2002 3:40 PM
Subject: problem with Andrew's patch ext3
> Hello Andrew,
>
> I patched 2.4.20 with your patch found out on
http://lwn.net/Articles/17447/
> and I have a big problem with:
> once server is booted on 2.4.20 with your patch, when I want to reboot
> with /sbin/reboot, server makes a Segmentation fault and it crashs.
> I tested it on 50-60 servers and it is the same problem. I tested kernel
> 2.4.20 without your patch: no problem.
>
> # uname -a
> Linux XXXXXX 2.4.20 #1 ven déc 13 17:21:23 CET 2002 i686 unknown
> # /sbin/reboot
>
> Broadcast message from root (pts/0) Sun Dec 15 14:26:03 2002...
>
> The system is going down for reboot NOW !!
> Segmentation fault
> #
> # dmRead from remote host XXXXXXXX: Connection reset by peer
>
> It is crashed.
>
> no logs :/
>
> Regards
> Octave
>
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
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.