Hello; I want to thank everyone in advance who are helping me.
Dave; I followed every step of the tutorial. In step 15 "compile the RTAI modules" this error occurred: checking for RTAI KConfig > File ... / Home / moses / Projects / rtai / magma / configure: line > 19 840:.:. Rtai_config: file not found >. Rtai_config (supplied) > Checking for module installation directory ... $ (Exec_prefix) / modules > Checking for Linux source tree ... configure: error: You must supply an > Argument to - with-linux-dir. I searched on google and found this help: (Http://mail.rtai.org/pipermail/rtai/2009-November/022196.html) with above: The problem is in the make file. This is how I fix it: Scroll down to the "config.status" task in the makefile. This section of the makefile sets up the required variables passed into the configure script. There's a small problem with one of the options passed into "configure". The original line looks like: - With-KConfig-file = $ <\ It Should look like: - With-KConfig =./$<-file \ (Notice the added /.) After editing the file, the module RTAI was compiled and no more errors. My dmesg command: c...@cnc-desktop:~$ sudo dmesg | grep -i hal [sudo] password for cnc: [ 147.195773] RTAI[hal]: <3.7.1> mounted over IPIPE-NOTHREADS 2.4-01. [ 147.195779] RTAI[hal]: compiled with gcc version 4.4.1 (Ubuntu 4.4.1-4ubuntu9) . [ 147.195886] RTAI[hal]: mounted (IPIPE-NOTHREADS, IMMEDIATE (INTERNAL IRQs VECTORED), ISOL_CPUS_MASK: 0). [ 149.236593] RTAI[hal]: unmounted. c...@cnc-desktop:~$ c...@cnc-desktop:~$ sudo dmesg | grep -i rtai [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-rtai root=/dev/sda1 ro vga=795 quiet splash [ 147.195757] I-pipe: Domain RTAI registered. [ 147.195773] RTAI[hal]: <3.7.1> mounted over IPIPE-NOTHREADS 2.4-01. [ 147.195779] RTAI[hal]: compiled with gcc version 4.4.1 (Ubuntu 4.4.1-4ubuntu9) . [ 147.195886] RTAI[hal]: mounted (IPIPE-NOTHREADS, IMMEDIATE (INTERNAL IRQs VECTORED), ISOL_CPUS_MASK: 0). [ 147.195897] f810b600 9ac15d93 RTAI 200 [ 147.270365] RTAI[malloc]: global heap size = 2097152 bytes, <BSD>. [ 147.270775] RTAI[sched]: IMMEDIATE, MP, USER/KERNEL SPACE: <with RTAI OWN KTASKs>, <uses LINUX SYSCALLs>, kstacks pool size = 524288 bytes. [ 147.270790] RTAI[sched]: hard timer type/freq = APIC/8325299(Hz); default timing: periodic; linear timed lists. [ 147.270800] RTAI[sched]: Linux timer freq = 250 (Hz), TimeBase freq = 1598710000 hz. [ 147.270807] RTAI[sched]: timer setup = 999 ns, resched latency = 2944 ns. [ 149.132465] RTAI[malloc]: unloaded. [ 149.228028] RTAI[sched]: unloaded (forced hard/soft/hard transitions: traps 0, syscalls 0). [ 149.236429] I-pipe: Domain RTAI unregistered. [ 149.236593] RTAI[hal]: unmounted. c...@cnc-desktop:~$ c...@cnc-desktop:~$ sudo dmesg | grep -i cpu [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] KERNEL supported cpus: [ 0.000000] Transmeta TransmetaCPU [ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs [ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1 [ 0.000000] PERCPU: Allocating 45056 bytes of per cpu data [ 0.000000] Initializing CPU#0 [ 0.004000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.004000] HPET: 3 timers in total, 0 timers will be used for per-cpu timer [ 0.004000] Initializing cgroup subsys cpuacct [ 0.004000] CPU: L1 I cache: 32K, L1 D cache: 24K [ 0.004000] CPU: L2 cache: 512K [ 0.004000] CPU: Physical Processor ID: 0 [ 0.004000] CPU: Processor Core ID: 0 [ 0.069054] CPU0: Intel(R) Atom(TM) CPU 330 @ 1.60GHz stepping 02 [ 0.004000] Initializing CPU#1 [ 0.004000] CPU: L1 I cache: 32K, L1 D cache: 24K [ 0.004000] CPU: L2 cache: 512K [ 0.004000] CPU: Physical Processor ID: 0 [ 0.004000] CPU: Processor Core ID: 1 [ 0.160341] CPU1: Intel(R) Atom(TM) CPU 330 @ 1.60GHz stepping 02 [ 0.160364] checking TSC synchronization [CPU#0 -> CPU#1]: passed. [ 0.164053] Brought up 2 CPUs [ 0.164131] CPU0 attaching sched-domain: [ 0.164137] domain 0: span 0-1 level CPU [ 0.164157] CPU1 attaching sched-domain: [ 0.164162] domain 0: span 0-1 level CPU [ 0.365272] processor ACPI_CPU:00: registered as cooling_device0 [ 0.365375] processor ACPI_CPU:01: registered as cooling_device1 [ 0.500423] Switched to high resolution mode on CPU 1 [ 0.503987] Switched to high resolution mode on CPU 0 [ 1.185404] cpuidle: using governor ladder [ 1.185409] cpuidle: using governor menu [ 16.106912] CPU0 attaching NULL sched-domain. [ 16.106926] CPU1 attaching NULL sched-domain. [ 16.124127] CPU0 attaching sched-domain: [ 16.124152] domain 1: span 0-1 level CPU [ 16.124168] CPU1 attaching sched-domain: [ 16.124187] domain 1: span 0-1 level CPU [ 21.386479] CPU0 attaching NULL sched-domain. [ 21.386506] CPU1 attaching NULL sched-domain. [ 21.404153] CPU0 attaching sched-domain: [ 21.404165] domain 0: span 0-1 level CPU [ 21.404193] CPU1 attaching sched-domain: [ 21.404198] domain 0: span 0-1 level CPU [ 147.195886] RTAI[hal]: mounted (IPIPE-NOTHREADS, IMMEDIATE (INTERNAL IRQs VECTORED), ISOL_CPUS_MASK: 0). c...@cnc-desktop:~$ ^C c...@cnc-desktop:~$ c...@cnc-desktop:~$ sudo dmesg | grep -i motmod [ 147.797899] motmod: Unknown symbol ceil c...@cnc-desktop:~$sudo dmesg [ 0.000000] BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved) [ 0.000000] DMI present. [ 0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it. [ 0.000000] last_pfn = 0x7f7c0 max_arch_pfn = 0x100000 [ 0.000000] Scanning 0 areas for low memory corruption [ 0.000000] modified physical RAM map: [ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) [ 0.000000] modified: 0000000000010000 - 000000000009fc00 (usable) [ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) [ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) [ 0.000000] modified: 0000000000100000 - 000000007f7c0000 (usable) [ 0.000000] modified: 000000007f7c0000 - 000000007f7ce000 (ACPI data) [ 0.000000] modified: 000000007f7ce000 - 000000007f800000 (ACPI NVS) [ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) [ 0.000000] modified: 00000000fff80000 - 0000000100000000 (reserved) [ 0.000000] kernel direct mapping tables up to 377fe000 @ 10000-15000 [ 0.000000] ACPI: RSDP 000F9460, 0014 (r0 ACPIAM) [ 0.000000] ACPI: RSDT 7F7C0000, 003C (r1 ������ �������� 20090216 MSFT 97) [ 0.000000] ACPI: FACP 7F7C0200, 0084 (r1 021609 FACP1533 20090216 MSFT 97) [ 0.000000] FADT: X_PM1a_EVT_BLK.bit_width (16) does not match PM1_EVT_LEN (4) [ 0.000000] ACPI: DSDT 7F7C05C0, 4B9C (r1 1ACBN 1ACBN006 6 INTL 20051117) [ 0.000000] ACPI: FACS 7F7CE000, 0040 [ 0.000000] ACPI: APIC 7F7C0390, 006C (r1 021609 APIC1533 20090216 MSFT 97) [ 0.000000] ACPI: MCFG 7F7C0400, 003C (r1 021609 OEMMCFG 20090216 MSFT 97) [ 0.000000] ACPI: SLIC 7F7C0440, 0176 (r1 ������ �������� 20090216 MSFT 97) [ 0.000000] ACPI: OEMB 7F7CE040, 0076 (r1 021609 OEMB1533 20090216 MSFT 97) [ 0.000000] ACPI: HPET 7F7C85C0, 0038 (r1 021609 OEMHPET 20090216 MSFT 97) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] 1151MB HIGHMEM available. [ 0.000000] 887MB LOWMEM available. [ 0.000000] mapped low ram: 0 - 377fe000 [ 0.000000] low ram: 00000000 - 377fe000 [ 0.000000] bootmap 00011000 - 00017f00 [ 0.000000] (8 early reservations) ==> bootmem [0000000000 - 00377fe000] [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] [ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] [ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] [ 0.000000] #3 [0000100000 - 000079adb4] TEXT DATA BSS ==> [0000100000 - 000079adb4] [ 0.000000] #4 [000079b000 - 000079e000] INIT_PG_TABLE ==> [000079b000 - 000079e000] [ 0.000000] #5 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000] [ 0.000000] #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] [ 0.000000] #7 [0000011000 - 0000018000] BOOTMAP ==> [0000011000 - 0000018000] [ 0.000000] found SMP MP-table at [c00ff780] 000ff780 [ 0.000000] Zone PFN ranges: [ 0.000000] DMA 0x00000010 -> 0x00001000 [ 0.000000] Normal 0x00001000 -> 0x000377fe [ 0.000000] HighMem 0x000377fe -> 0x0007f7c0 [ 0.000000] Movable zone start PFN for each node [ 0.000000] early_node_map[2] active PFN ranges [ 0.000000] 0: 0x00000010 -> 0x0000009f [ 0.000000] 0: 0x00000100 -> 0x0007f7c0 [ 0.000000] On node 0 totalpages: 522063 [ 0.000000] free_area_init_node: node 0, pgdat c0652180, node_mem_map c1000200 [ 0.000000] DMA zone: 32 pages used for memmap [ 0.000000] DMA zone: 0 pages reserved [ 0.000000] DMA zone: 3951 pages, LIFO batch:0 [ 0.000000] Normal zone: 1744 pages used for memmap [ 0.000000] Normal zone: 221486 pages, LIFO batch:31 [ 0.000000] HighMem zone: 2304 pages used for memmap [ 0.000000] HighMem zone: 292546 pages, LIFO batch:31 [ 0.000000] ACPI: PM-Timer IO Port: 0x808 [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x82] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled) [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23 [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.000000] ACPI: IRQ0 used by override. [ 0.000000] ACPI: IRQ2 used by override. [ 0.000000] ACPI: IRQ9 used by override. [ 0.000000] Enabling APIC mode: Flat. Using 1 I/O APICs [ 0.000000] Using ACPI (MADT) for SMP configuration information [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 [ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs [ 0.000000] nr_irqs_gsi: 24 [ 0.000000] Allocating PCI resources starting at 80000000 (gap: 7f800000:7f600000) [ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1 [ 0.000000] PERCPU: Allocating 45056 bytes of per cpu data [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 517983 [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-rtai root=/dev/sda1 ro vga=795 quiet splash [ 0.000000] Enabling fast FPU save and restore... done. [ 0.000000] Enabling unmasked SIMD FPU exception support... done. [ 0.000000] Initializing CPU#0 [ 0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes) [ 0.000000] Fast TSC calibration using PIT [ 0.000000] Detected 1598.710 MHz processor. [ 0.004000] I-pipe 2.4-01: pipeline enabled. [ 0.004000] Console: colour dummy device 80x25 [ 0.004000] console [tty0] enabled [ 0.004000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) [ 0.004000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) [ 0.004000] allocated 10443200 bytes of page_cgroup [ 0.004000] please try cgroup_disable=memory option if you don't want [ 0.004000] Memory: 2053044k/2088704k available (3894k kernel code, 34312k reserved, 1678k data, 436k init, 1179400k highmem) [ 0.004000] virtual kernel memory layout: [ 0.004000] fixmap : 0xfff51000 - 0xfffff000 ( 696 kB) [ 0.004000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) [ 0.004000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) [ 0.004000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) [ 0.004000] .init : 0xc0679000 - 0xc06e6000 ( 436 kB) [ 0.004000] .data : 0xc04cdb98 - 0xc0671720 (1678 kB) [ 0.004000] .text : 0xc0100000 - 0xc04cdb98 (3894 kB) [ 0.004000] Checking if this processor honours the WP bit even in supervisor mode...Ok. [ 0.004000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.004000] hpet clockevent registered [ 0.004000] HPET: 3 timers in total, 0 timers will be used for per-cpu timer [ 0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3197.42 BogoMIPS (lpj=6394840) [ 0.004000] Security Framework initialized [ 0.004000] SELinux: Disabled at boot. [ 0.004000] Mount-cache hash table entries: 512 [ 0.004000] Initializing cgroup subsys ns [ 0.004000] Initializing cgroup subsys cpuacct [ 0.004000] Initializing cgroup subsys memory [ 0.004000] Initializing cgroup subsys freezer [ 0.004000] CPU: L1 I cache: 32K, L1 D cache: 24K [ 0.004000] CPU: L2 cache: 512K [ 0.004000] CPU: Physical Processor ID: 0 [ 0.004000] CPU: Processor Core ID: 0 [ 0.004000] Checking 'hlt' instruction... OK. [ 0.016683] ACPI: Core revision 20081204 [ 0.029343] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.069054] CPU0: Intel(R) Atom(TM) CPU 330 @ 1.60GHz stepping 02 [ 0.072001] Booting processor 1 APIC 0x1 ip 0x6000 [ 0.004000] Initializing CPU#1 [ 0.004000] Calibrating delay using timer specific routine.. 3197.24 BogoMIPS (lpj=6394488) [ 0.004000] CPU: L1 I cache: 32K, L1 D cache: 24K [ 0.004000] CPU: L2 cache: 512K [ 0.004000] CPU: Physical Processor ID: 0 [ 0.004000] CPU: Processor Core ID: 1 [ 0.160341] CPU1: Intel(R) Atom(TM) CPU 330 @ 1.60GHz stepping 02 [ 0.160364] checking TSC synchronization [CPU#0 -> CPU#1]: passed. [ 0.164053] Brought up 2 CPUs [ 0.164061] Total of 2 processors activated (6394.66 BogoMIPS). [ 0.164131] CPU0 attaching sched-domain: [ 0.164137] domain 0: span 0-1 level CPU [ 0.164143] groups: 0 1 [ 0.164157] CPU1 attaching sched-domain: [ 0.164162] domain 0: span 0-1 level CPU [ 0.164167] groups: 1 0 [ 0.164305] net_namespace: 976 bytes [ 0.164636] regulator: core version 0.5 [ 0.164717] NET: Registered protocol family 16 [ 0.164993] EISA bus registered [ 0.165015] ACPI: bus type pci registered [ 0.165140] PCI: Found Intel Corporation 945G/GZ/P/PL Express Memory Controller Hub with MMCONFIG support. [ 0.165147] PCI: Using MMCONFIG for extended config space [ 0.165152] PCI: Using configuration type 1 for base access [ 0.166734] bio: create slab <bio-0> at 0 [ 0.169519] ACPI: EC: Look up EC in DSDT [ 0.189963] ACPI: Interpreter enabled [ 0.189969] ACPI: (supports S0 S5) [ 0.189996] ACPI: Using IOAPIC for interrupt routing [ 0.208670] ACPI: No dock devices found. [ 0.209203] ACPI: PCI Root Bridge [PCI0] (0000:00) [ 0.209344] pci 0000:00:02.0: reg 10 32bit mmio: [0xfea80000-0xfeafffff] [ 0.209355] pci 0000:00:02.0: reg 14 io port: [0xdc00-0xdc07] [ 0.209364] pci 0000:00:02.0: reg 18 32bit mmio: [0xd0000000-0xdfffffff] [ 0.209374] pci 0000:00:02.0: reg 1c 32bit mmio: [0xfea40000-0xfea7ffff] [ 0.209517] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.209525] pci 0000:00:1c.0: PME# disabled [ 0.209587] pci 0000:00:1d.0: reg 20 io port: [0xd880-0xd89f] [ 0.209652] pci 0000:00:1d.1: reg 20 io port: [0xd800-0xd81f] [ 0.209717] pci 0000:00:1d.2: reg 20 io port: [0xd480-0xd49f] [ 0.209782] pci 0000:00:1d.3: reg 20 io port: [0xd400-0xd41f] [ 0.209838] pci 0000:00:1d.7: reg 10 32bit mmio: [0xfea3bc00-0xfea3bfff] [ 0.209922] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold [ 0.209930] pci 0000:00:1d.7: PME# disabled [ 0.210088] pci 0000:00:1f.0: quirk: region 0800-087f claimed by ICH6 ACPI/GPIO/TCO [ 0.210097] pci 0000:00:1f.0: quirk: region 0480-04bf claimed by ICH6 GPIO [ 0.210105] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0a00 (mask 00ff) [ 0.210158] pci 0000:00:1f.1: reg 10 io port: [0x00-0x07] [ 0.210169] pci 0000:00:1f.1: reg 14 io port: [0x00-0x03] [ 0.210180] pci 0000:00:1f.1: reg 18 io port: [0x8f0-0x8f7] [ 0.210191] pci 0000:00:1f.1: reg 1c io port: [0x8f8-0x8fb] [ 0.210202] pci 0000:00:1f.1: reg 20 io port: [0xffa0-0xffaf] [ 0.210251] pci 0000:00:1f.2: reg 10 io port: [0xd080-0xd087] [ 0.210262] pci 0000:00:1f.2: reg 14 io port: [0xd000-0xd003] [ 0.210272] pci 0000:00:1f.2: reg 18 io port: [0xcc00-0xcc07] [ 0.210283] pci 0000:00:1f.2: reg 1c io port: [0xc880-0xc883] [ 0.210293] pci 0000:00:1f.2: reg 20 io port: [0xc800-0xc80f] [ 0.210337] pci 0000:00:1f.2: PME# supported from D3hot [ 0.210345] pci 0000:00:1f.2: PME# disabled [ 0.210399] pci 0000:00:1f.3: reg 20 io port: [0x400-0x41f] [ 0.210477] pci 0000:01:00.0: reg 10 io port: [0xe800-0xe8ff] [ 0.210505] pci 0000:01:00.0: reg 18 64bit mmio: [0xfdfff000-0xfdffffff] [ 0.210526] pci 0000:01:00.0: reg 20 64bit mmio: [0xfdfe0000-0xfdfeffff] [ 0.210539] pci 0000:01:00.0: reg 30 32bit mmio: [0xfebf0000-0xfebfffff] [ 0.210605] pci 0000:01:00.0: supports D1 D2 [ 0.210610] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.210619] pci 0000:01:00.0: PME# disabled [ 0.210689] pci 0000:00:1c.0: bridge io port: [0xe000-0xefff] [ 0.210697] pci 0000:00:1c.0: bridge 32bit mmio: [0xfeb00000-0xfebfffff] [ 0.210708] pci 0000:00:1c.0: bridge 64bit mmio pref: [0xfdf00000-0xfdffffff] [ 0.210769] pci 0000:00:1e.0: transparent bridge [ 0.210796] pci_bus 0000:00: on NUMA node 0 [ 0.210811] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] [ 0.211153] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT] [ 0.211337] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P4._PRT] [ 0.231557] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15) [ 0.231855] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15) [ 0.232171] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 *4 5 6 7 10 11 12 14 15) [ 0.232466] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 10 11 12 14 15) [ 0.232761] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. [ 0.233059] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. [ 0.233356] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. [ 0.233652] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15) [ 0.233981] ACPI Warning (tbutils-0242): Incorrect checksum in table [OEMB] - 58, should be 54 [20081204] [ 0.234150] SCSI subsystem initialized [ 0.234150] libata version 3.00 loaded. [ 0.234150] usbcore: registered new interface driver usbfs [ 0.234150] usbcore: registered new interface driver hub [ 0.234150] usbcore: registered new device driver usb [ 0.234150] PCI: Using ACPI for IRQ routing [ 0.248025] Bluetooth: Core ver 2.14 [ 0.248068] NET: Registered protocol family 31 [ 0.248068] Bluetooth: HCI device and connection manager initialized [ 0.248068] Bluetooth: HCI socket layer initialized [ 0.248068] NET: Registered protocol family 8 [ 0.248068] NET: Registered protocol family 20 [ 0.248096] NetLabel: Initializing [ 0.248100] NetLabel: domain hash size = 128 [ 0.248104] NetLabel: protocols = UNLABELED CIPSOv4 [ 0.248133] NetLabel: unlabeled traffic allowed by default [ 0.264021] pnp: PnP ACPI init [ 0.264051] ACPI: bus type pnp registered [ 0.272519] pnp: PnP ACPI: found 16 devices [ 0.272525] ACPI: ACPI bus type pnp unregistered [ 0.272534] PnPBIOS: Disabled by ACPI PNP [ 0.272560] system 00:01: iomem range 0xfed13000-0xfed19fff has been reserved [ 0.272580] system 00:08: ioport range 0xa00-0xadf has been reserved [ 0.272587] system 00:08: ioport range 0xae0-0xaef has been reserved [ 0.272602] system 00:09: ioport range 0x4d0-0x4d1 has been reserved [ 0.272610] system 00:09: ioport range 0x800-0x87f has been reserved [ 0.272617] system 00:09: ioport range 0x480-0x4bf has been reserved [ 0.272624] system 00:09: iomem range 0xfed1c000-0xfed1ffff has been reserved [ 0.272631] system 00:09: iomem range 0xfed20000-0xfed8ffff has been reserved [ 0.272647] system 00:0c: iomem range 0xffc00000-0xfff7ffff has been reserved [ 0.272662] system 00:0d: iomem range 0xfec00000-0xfec00fff has been reserved [ 0.272669] system 00:0d: iomem range 0xfee00000-0xfee00fff has been reserved [ 0.272684] system 00:0e: iomem range 0xe0000000-0xe3ffffff has been reserved [ 0.272699] system 00:0f: iomem range 0x0-0x9ffff could not be reserved [ 0.272707] system 00:0f: iomem range 0xc0000-0xcffff could not be reserved [ 0.272714] system 00:0f: iomem range 0xe0000-0xfffff could not be reserved [ 0.272721] system 00:0f: iomem range 0x100000-0x7f7fffff could not be reserved [ 0.307572] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:01 [ 0.307580] pci 0000:00:1c.0: IO window: 0xe000-0xefff [ 0.307590] pci 0000:00:1c.0: MEM window: 0xfeb00000-0xfebfffff [ 0.307599] pci 0000:00:1c.0: PREFETCH window: 0x000000fdf00000-0x000000fdffffff [ 0.307610] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:02 [ 0.307615] pci 0000:00:1e.0: IO window: disabled [ 0.307623] pci 0000:00:1e.0: MEM window: disabled [ 0.307630] pci 0000:00:1e.0: PREFETCH window: disabled [ 0.307661] pci 0000:00:1c.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17 [ 0.307671] pci 0000:00:1c.0: setting latency timer to 64 [ 0.307683] pci 0000:00:1e.0: setting latency timer to 64 [ 0.307692] pci_bus 0000:00: resource 0 io: [0x00-0xffff] [ 0.307698] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff] [ 0.307704] pci_bus 0000:01: resource 0 io: [0xe000-0xefff] [ 0.307710] pci_bus 0000:01: resource 1 mem: [0xfeb00000-0xfebfffff] [ 0.307716] pci_bus 0000:01: resource 2 mem: [0xfdf00000-0xfdffffff] [ 0.307722] pci_bus 0000:01: resource 3 mem: [0x0-0x0] [ 0.307727] pci_bus 0000:02: resource 0 mem: [0x0-0x0] [ 0.307733] pci_bus 0000:02: resource 1 mem: [0x0-0x0] [ 0.307738] pci_bus 0000:02: resource 2 mem: [0x0-0x0] [ 0.307743] pci_bus 0000:02: resource 3 io: [0x00-0xffff] [ 0.307749] pci_bus 0000:02: resource 4 mem: [0x000000-0xffffffff] [ 0.307821] NET: Registered protocol family 2 [ 0.340146] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) [ 0.340797] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) [ 0.341749] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) [ 0.342209] TCP: Hash tables configured (established 131072 bind 65536) [ 0.342216] TCP reno registered [ 0.352244] NET: Registered protocol family 1 [ 0.352859] Scanning for low memory corruption every 60 seconds [ 0.353017] audit: initializing netlink socket (disabled) [ 0.353044] type=2000 audit(1273790306.351:1): initialized [ 0.358924] highmem bounce pool size: 64 pages [ 0.358937] HugeTLB registered 4 MB page size, pre-allocated 0 pages [ 0.362165] VFS: Disk quotas dquot_6.5.2 [ 0.362305] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 0.363681] fuse init (API version 7.11) [ 0.363878] msgmni has been set to 1708 [ 0.364352] alg: No test for stdrng (krng) [ 0.364412] io scheduler noop registered [ 0.364418] io scheduler anticipatory registered [ 0.364423] io scheduler deadline registered [ 0.364467] io scheduler cfq registered (default) [ 0.364494] pci 0000:00:02.0: Boot video device [ 0.364746] pcieport-driver 0000:00:1c.0: setting latency timer to 64 [ 0.364830] pcieport-driver 0000:00:1c.0: irq 24 for MSI/MSI-X [ 0.365272] processor ACPI_CPU:00: registered as cooling_device0 [ 0.365375] processor ACPI_CPU:01: registered as cooling_device1 [ 0.371254] isapnp: Scanning for PnP cards... [ 0.500423] Switched to high resolution mode on CPU 1 [ 0.503987] Switched to high resolution mode on CPU 0 [ 0.724641] isapnp: No Plug & Play device found [ 0.727183] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.729509] brd: module loaded [ 0.730345] loop: module loaded [ 0.730542] Fixed MDIO Bus: probed [ 0.730556] PPP generic driver version 2.4.2 [ 0.730689] input: Macintosh mouse button emulation as /devices/virtual/input/input0 [ 0.730765] Driver 'sd' needs updating - please use bus_type methods [ 0.730789] Driver 'sr' needs updating - please use bus_type methods [ 0.730960] ata_piix 0000:00:1f.1: version 2.12 [ 0.730996] ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18 [ 0.731069] ata_piix 0000:00:1f.1: setting latency timer to 64 [ 0.731282] scsi0 : ata_piix [ 0.731527] scsi1 : ata_piix [ 0.735165] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14 [ 0.735173] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15 [ 0.735250] ata1: port disabled. ignoring. [ 0.735333] ata2: port disabled. ignoring. [ 0.735407] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 [ 0.735418] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ] [ 0.735487] ata_piix 0000:00:1f.2: setting latency timer to 64 [ 0.735642] scsi2 : ata_piix [ 0.735812] scsi3 : ata_piix [ 0.740115] ata3: SATA max UDMA/133 cmd 0xd080 ctl 0xd000 bmdma 0xc800 irq 19 [ 0.740122] ata4: SATA max UDMA/133 cmd 0xcc00 ctl 0xc880 bmdma 0xc808 irq 19 [ 0.900389] ata3.00: HPA detected: current 156299375, native 156301488 [ 0.900401] ata3.00: ATA-7: WDC WD800BD-00MRA1, 10.01E01, max UDMA/133 [ 0.900407] ata3.00: 156299375 sectors, multi 16: LBA48 NCQ (depth 0/32) [ 0.908398] ata3.00: configured for UDMA/133 [ 0.908635] scsi 2:0:0:0: Direct-Access ATA WDC WD800BD-00MR 10.0 PQ: 0 ANSI: 5 [ 0.908891] sd 2:0:0:0: [sda] 156299375 512-byte hardware sectors: (80.0 GB/74.5 GiB) [ 0.908949] sd 2:0:0:0: [sda] Write Protect is off [ 0.908955] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 0.909053] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 0.909228] sd 2:0:0:0: [sda] 156299375 512-byte hardware sectors: (80.0 GB/74.5 GiB) [ 0.909283] sd 2:0:0:0: [sda] Write Protect is off [ 0.909289] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 0.909385] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 0.909395] sda: sda1 sda2 < sda5 > [ 0.945075] sd 2:0:0:0: [sda] Attached SCSI disk [ 0.945193] sd 2:0:0:0: Attached scsi generic sg0 type 0 [ 1.100170] ata4.01: NODEV after polling detection [ 1.108244] ata4.00: ATAPI: HL-DT-ST DVDRAM GH20NS15, IL00, max UDMA/100 [ 1.124278] ata4.00: configured for UDMA/100 [ 1.130234] scsi 3:0:0:0: CD-ROM HL-DT-ST DVDRAM GH20NS15 IL00 PQ: 0 ANSI: 5 [ 1.142124] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray [ 1.142133] Uniform CD-ROM driver Revision: 3.20 [ 1.142360] sr 3:0:0:0: Attached scsi CD-ROM sr0 [ 1.142460] sr 3:0:0:0: Attached scsi generic sg1 type 5 [ 1.143774] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 1.143828] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 [ 1.143880] ehci_hcd 0000:00:1d.7: setting latency timer to 64 [ 1.143888] ehci_hcd 0000:00:1d.7: EHCI Host Controller [ 1.144068] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1 [ 1.147979] ehci_hcd 0000:00:1d.7: debug port 1 [ 1.147989] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported [ 1.148040] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfea3bc00 [ 1.160027] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 [ 1.160193] usb usb1: configuration #1 chosen from 1 choice [ 1.160259] hub 1-0:1.0: USB hub found [ 1.160278] hub 1-0:1.0: 8 ports detected [ 1.160521] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 1.160559] uhci_hcd: USB Universal Host Controller Interface driver [ 1.160630] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 [ 1.160644] uhci_hcd 0000:00:1d.0: setting latency timer to 64 [ 1.160651] uhci_hcd 0000:00:1d.0: UHCI Host Controller [ 1.160756] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 [ 1.160791] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000d880 [ 1.160968] usb usb2: configuration #1 chosen from 1 choice [ 1.161049] hub 2-0:1.0: USB hub found [ 1.161066] hub 2-0:1.0: 2 ports detected [ 1.161241] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 [ 1.161254] uhci_hcd 0000:00:1d.1: setting latency timer to 64 [ 1.161261] uhci_hcd 0000:00:1d.1: UHCI Host Controller [ 1.161360] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3 [ 1.161393] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000d800 [ 1.161565] usb usb3: configuration #1 chosen from 1 choice [ 1.161626] hub 3-0:1.0: USB hub found [ 1.161644] hub 3-0:1.0: 2 ports detected [ 1.161814] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 [ 1.161826] uhci_hcd 0000:00:1d.2: setting latency timer to 64 [ 1.161833] uhci_hcd 0000:00:1d.2: UHCI Host Controller [ 1.161949] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4 [ 1.161997] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000d480 [ 1.162167] usb usb4: configuration #1 chosen from 1 choice [ 1.162230] hub 4-0:1.0: USB hub found [ 1.162247] hub 4-0:1.0: 2 ports detected [ 1.162445] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16 [ 1.162457] uhci_hcd 0000:00:1d.3: setting latency timer to 64 [ 1.162464] uhci_hcd 0000:00:1d.3: UHCI Host Controller [ 1.162566] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5 [ 1.162616] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000d400 [ 1.162790] usb usb5: configuration #1 chosen from 1 choice [ 1.162858] hub 5-0:1.0: USB hub found [ 1.162875] hub 5-0:1.0: 2 ports detected [ 1.163149] PNP: PS/2 Controller [PNP0f03:PS2M] at 0x60,0x64 irq 12 [ 1.163156] PNP: PS/2 controller doesn't have KBD irq; using default 1 [ 1.163553] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 1.163569] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 1.172108] mice: PS/2 mouse device common for all mice [ 1.184166] rtc_cmos 00:03: RTC can wake from S4 [ 1.184244] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 [ 1.184283] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs [ 1.184538] device-mapper: uevent: version 1.0.3 [ 1.184789] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-de...@redhat.com [ 1.185105] device-mapper: multipath: version 1.0.5 loaded [ 1.185114] device-mapper: multipath round-robin: version 1.0.0 loaded [ 1.185357] EISA: Probing bus 0 at eisa.0 [ 1.185398] EISA: Detected 0 cards. [ 1.185404] cpuidle: using governor ladder [ 1.185409] cpuidle: using governor menu [ 1.186450] TCP cubic registered [ 1.186830] NET: Registered protocol family 10 [ 1.187811] lo: Disabled Privacy Extensions [ 1.188604] NET: Registered protocol family 17 [ 1.188661] Bluetooth: L2CAP ver 2.11 [ 1.188666] Bluetooth: L2CAP socket layer initialized [ 1.188673] Bluetooth: SCO (Voice Link) ver 0.6 [ 1.188678] Bluetooth: SCO socket layer initialized [ 1.188793] Bluetooth: RFCOMM socket layer initialized [ 1.188812] Bluetooth: RFCOMM TTY layer initialized [ 1.188819] Bluetooth: RFCOMM ver 1.10 [ 1.188891] Using IPI No-Shortcut mode [ 1.189086] registered taskstats version 1 [ 1.189392] rtc_cmos 00:03: setting system clock to 2010-05-13 22:38:27 UTC (1273790307) [ 1.189400] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found [ 1.189405] EDD information not available. [ 1.292047] md: Waiting for all devices to be available before autodetect [ 1.292054] md: If you don't use raid, use raid=noautodetect [ 1.292276] md: Autodetecting RAID arrays. [ 1.292282] md: Scanned 0 and added 0 devices. [ 1.292287] md: autorun ... [ 1.292290] md: ... autorun DONE. [ 1.346371] kjournald starting. Commit interval 5 seconds [ 1.346396] EXT3-fs: mounted filesystem with ordered data mode. [ 1.346423] VFS: Mounted root (ext3 filesystem) readonly on device 8:1. [ 1.346730] Freeing unused kernel memory: 436k freed [ 1.346927] Write protecting the kernel text: 3896k [ 1.346997] Write protecting the kernel read-only data: 1340k [ 1.656038] usb 3-2: new low speed USB device using uhci_hcd and address 2 [ 1.832613] usb 3-2: configuration #1 chosen from 1 choice [ 4.129363] usbcore: registered new interface driver hiddev [ 4.145040] input: CHESEN USB Keyboard as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/input/input1 [ 4.176353] Linux agpgart interface v0.103 [ 4.188380] generic-usb 0003:0A81:0101.0001: input,hidraw0: USB HID v1.10 Keyboard [CHESEN USB Keyboard] on usb-0000:00:1d.1-2/input0 [ 4.215631] input: CHESEN USB Keyboard as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.1/input/input2 [ 4.237349] agpgart-intel 0000:00:00.0: Intel 945G Chipset [ 4.237713] agpgart-intel 0000:00:00.0: detected 7932K stolen memory [ 4.240719] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000 [ 4.244374] generic-usb 0003:0A81:0101.0002: input,hidraw1: USB HID v1.10 Device [CHESEN USB Keyboard] on usb-0000:00:1d.1-2/input1 [ 4.244481] usbcore: registered new interface driver usbhid [ 4.244492] usbhid: v2.6:USB HID core driver [ 4.254490] intel_rng: FWH not detected [ 4.264394] lp: driver loaded but no devices found [ 4.291335] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded [ 4.291366] r8169 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 [ 4.291391] r8169 0000:01:00.0: setting latency timer to 64 [ 4.291539] r8169 0000:01:00.0: irq 25 for MSI/MSI-X [ 4.293090] eth0: RTL8102e at 0xf8048000, e0:cb:4e:21:e5:be, XID 34a00000 IRQ 25 [ 4.482980] psmouse serio1: ID: 00 00 64<6>input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3 [ 4.830999] ip_tables: (C) 2000-2006 Netfilter Core Team [ 6.152286] EXT3 FS on sda1, internal journal [ 11.017151] r8169: eth0: link up [ 11.017162] r8169: eth0: link up [ 11.382828] ppdev: user-space parallel port driver [ 15.543332] [drm] Initialized drm 1.1.0 20060810 [ 15.708728] pci 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 [ 15.708740] pci 0000:00:02.0: setting latency timer to 64 [ 15.711847] [drm] Initialized i915 1.6.0 20080730 on minor 0 [ 16.106912] CPU0 attaching NULL sched-domain. [ 16.106926] CPU1 attaching NULL sched-domain. [ 16.124127] CPU0 attaching sched-domain: [ 16.124135] domain 0: span 0-1 level MC [ 16.124142] groups: 0 1 [ 16.124152] domain 1: span 0-1 level CPU [ 16.124158] groups: 0-1 [ 16.124168] CPU1 attaching sched-domain: [ 16.124173] domain 0: span 0-1 level MC [ 16.124178] groups: 1 0 [ 16.124187] domain 1: span 0-1 level CPU [ 16.124192] groups: 0-1 [ 21.386479] CPU0 attaching NULL sched-domain. [ 21.386506] CPU1 attaching NULL sched-domain. [ 21.404153] CPU0 attaching sched-domain: [ 21.404165] domain 0: span 0-1 level CPU [ 21.404174] groups: 0 1 [ 21.404193] CPU1 attaching sched-domain: [ 21.404198] domain 0: span 0-1 level CPU [ 21.404204] groups: 1 0 [ 21.696021] eth0: no IPv6 routers present [ 147.195757] I-pipe: Domain RTAI registered. [ 147.195773] RTAI[hal]: <3.7.1> mounted over IPIPE-NOTHREADS 2.4-01. [ 147.195779] RTAI[hal]: compiled with gcc version 4.4.1 (Ubuntu 4.4.1-4ubuntu9) . [ 147.195886] RTAI[hal]: mounted (IPIPE-NOTHREADS, IMMEDIATE (INTERNAL IRQs VECTORED), ISOL_CPUS_MASK: 0). [ 147.195891] PIPELINE layers: [ 147.195897] f810b600 9ac15d93 RTAI 200 [ 147.195902] c0740700 0 Linux 100 [ 147.270365] RTAI[malloc]: global heap size = 2097152 bytes, <BSD>. [ 147.270775] RTAI[sched]: IMMEDIATE, MP, USER/KERNEL SPACE: <with RTAI OWN KTASKs>, <uses LINUX SYSCALLs>, kstacks pool size = 524288 bytes. [ 147.270790] RTAI[sched]: hard timer type/freq = APIC/8325299(Hz); default timing: periodic; linear timed lists. [ 147.270800] RTAI[sched]: Linux timer freq = 250 (Hz), TimeBase freq = 1598710000 hz. [ 147.270807] RTAI[sched]: timer setup = 999 ns, resched latency = 2944 ns. [ 147.797899] motmod: Unknown symbol ceil [ 149.132465] RTAI[malloc]: unloaded. [ 149.228028] RTAI[sched]: unloaded (forced hard/soft/hard transitions: traps 0, syscalls 0). [ 149.236429] I-pipe: Domain RTAI unregistered. [ 149.236593] RTAI[hal]: unmounted. c...@cnc-desktop:~$ On Thu, 13 May 2010 00:25:16 -0400, Dave <e...@dc9.tzo.com> wrote: >> No, I don't believe that will make any difference in this case. >> >> The kernel build system (kbuild) checks at compile time whether all the >> symbols used by modules are present either in the kernel or some other >> module and warns if they aren't all known symbols. >> >> emc depends on symbols provided by the kernel as well as symbols >> provided by rtai. However, kbuild is unaware which symbols are in fact >> provided by rtai. In principle this is taken care of by >> KBUILD_EXTRA_SYMBOLS but for some reason this just doesn't seem to work. >> Instead, we use a gross script which just filters the messages out of >> the output of make. That is the change you saw recently. >> Unfortunately, it has hidden a legitimate warning in the Mariano's case. >> >> Jeff >> >> ------------------------------------------------------------------------------ >> >> _______________________________________________ >> Emc-users mailing list >> Emc-users@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/emc-users >> >> > > Mariano, > > Check out line numbers 9-17 on this page: > > http://wiki.linuxcnc.org/emcinfo.pl?action=browse&id=EMC_Ubuntu91&revision=3 > > Did you do this (or something close ) when you set up your system? > > I put this page on the Wiki after much head banging and I believe it is > workable. > > I have the results of this Ubuntu RTAI compile running on 3 different > PCs with 9.10 right now without issues. > > I've seen an error similar to what you are seeing, but I can't remember > what I did to get around it. > > Dave > > > > ------------------------------------------------------------------------------ > > _______________________________________________ > Emc-users mailing list > Emc-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/emc-users ------------------------------------------------------------------------------ _______________________________________________ Emc-users mailing list Emc-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/emc-users