help-grub
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Grub2 on Soekris net5501


From: Cor Legemaat
Subject: Grub2 on Soekris net5501
Date: Sat, 08 Mar 2014 21:10:57 +0200

Hi All:

I am attempting to install Funtoo on an Soekris net5501 embedded pc but
cant get grub to load, it don't have an display so every thing is done
true serial. It did boot ones correctly but I didn't had all the
necessary kernel modules complied yet so needed to change/recompile the
kernel and after that I couldn't get it to work again. It boot and show
"GRUB loading.\nWelcome to GRUB!" and thats it. If I dd the disk out and
boot it with qemu it boot fine.

I see there is an bug opened for it but no info supplied. Is there an
way to get grub displaying debug info to the serial interface?

There is an note on http://debian.takhis.net/soekris/soekris.html
mentioning that if you make your kernel line to long grub will bug out,
so I tried it without the console options and still no joy.

I suspect the problem could be related to the following snipped from the
Soekris manual but don't know what to do with it: "Preloading the
storage device on another system. The net5501 uses a simple algorithm
for sector translation for storage devices, if there are less than 1024
tracks, it will use the native CHS that the device reports, if more than
1024 tracks, it will use LBA translation. So the host system will need
to match that, and that will also normally be the case. In some cases it
may be necessary to change the translation settings in the host system’s
BIOS or to do manually configuration of the boot loader used."

Below commands used and a bunch of system info.

libvirtd qemu cmd:
/usr/bin/qemu-system-x86_64 -machine accel=kvm -name Soekris -S -machine
pc-i440fx-1.5,accel=kvm,usb=off -m 512 -realtime mlock=off -smp
1,sockets=1,cores=1,threads=1 -uuid f40890ba-4045-6f41-0691-0b7bfee90265
-nographic -no-user-config -nodefaults -chardev
socket,id=charmonitor,path=/var/lib/libvirt/qemu/Soekris.monitor,server,nowait 
-mon chardev=charmonitor,id=monitor,mode=control -rtc base=utc -no-shutdown 
-boot strict=on -device piix3-usb-uhci,id=usb,bus=pci.0,addr=0x1.0x2 -device 
lsi,id=scsi0,bus=pci.0,addr=0x4 -drive 
file=/var/lib/libvirt/images/soekris.img,if=none,id=drive-scsi0-0-0,format=raw 
-device 
scsi-hd,bus=scsi0.0,scsi-id=0,drive=drive-scsi0-0-0,id=scsi0-0-0,bootindex=1 
-netdev tap,fd=19,id=hostnet0 -device 
rtl8139,netdev=hostnet0,id=net0,mac=52:54:00:72:bb:44,bus=pci.0,addr=0x3 
-chardev pty,id=charserial0 -device isa-serial,chardev=charserial0,id=serial0 
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x5

Chroot is done with:
cd /mnt/funtoo
mount -t proc none proc
mount --rbind /sys sys
mount --rbind /dev dev
env -i HOME=/root TERM=$TERM chroot . bash -l

Grub is installed with: 
sys-boot/grub-2.00-r7  USE="binfont nls -custom-cflags debug
-device-mapper -doc -efiemu (-libzfs) -mkfont -mount -sdl -static"
GRUB_PLATFORMS="pc -coreboot -efi-32 -efi-64 -emu -ieee1275 -multiboot
-qemu -qemu-mips -yeeloong"
grub-install --no-floppy --target=i386-pc --recheck --debug /dev/sda

mount -l = "/dev/sda2 on /boot type ext4 (rw,noatime)"

parted /dev/sda print:
Model: ATA SanDisk SDCFH-01 (scsi)
Disk /dev/sda: 16.0GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags: 

Number  Start   End     Size    File system     Name  Flags
 1      18.4kB  10.5MB  10.5MB                        bios_grub
 2      10.5MB  547MB   537MB   ext4
 3      547MB   2695MB  2147MB  linux-swap(v1)
 4      2695MB  16.0GB  13.3GB  ext4


fstab:
UUID=d57ed6cf-ab50-494a-8a0e-802e78912ce3 /boot ext4 noatime 1 2
UUID=bbb065c0-ea36-46ac-b029-7cd5b374fab8 none swap sw 0 0
UUID=65adddf8-5cae-4b13-a9b0-750e37fa9453 / ext4 noatime 0 1

/boot/grub/grub.cfg:
set timeout=3

  insmod part_gpt
  insmod ext2
  insmod serial
  set root=(hostdisk//dev/sda,gpt2)
  search --no-floppy --fs-uuid --set d57ed6cf-ab50-494a-8a0e-802e78912ce3

serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
terminal_input serial
terminal_output serial

menuentry "Funtoo Linux - kernel-3.13.5-genoo-kraba5510" {
  insmod part_gpt
  insmod ext2
  set root=(hostdisk//dev/sda,gpt2)
  search --no-floppy --fs-uuid --set d57ed6cf-ab50-494a-8a0e-802e78912ce3
  linux /kernel-3.13.5-genoo-kraba5510 rootfstype=ext4 root=/dev/sda4 
console=ttyS0,115200
}
set default=0

dmesg from sysresccd:
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.4.66-std381-i586 (address@hidden) (gcc version 
4.4.7 (Gentoo 4.4.7 p1.2, pie-0.4.5) ) #2 SMP Sat Oct 19 15:08:19 UTC 2013
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 0000000020000000 (usable)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] Notice: NX (Execute Disable) protection missing in CPU!
[    0.000000] DMI not present or invalid.
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) 
==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x20000 max_arch_pfn = 0x100000
[    0.000000] initial memory mapped : 0 - 01800000
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: 0000000000000000-0000000020000000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 0020000000 page 2M
[    0.000000] kernel direct mapping tables up to 0x1fffffff @ [mem 
0x017f8000-0x017fffff]
[    0.000000] RAMDISK: 1f46c000 - 1ffde000
[    0.000000] ACPI Error: A valid RSDP was not found (20120320/tbxfroot-219)
[    0.000000] 0MB HIGHMEM available.
[    0.000000] 512MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 20000000
[    0.000000]   low ram: 0 - 20000000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x00020000
[    0.000000]   HighMem  empty
[    0.000000] Movable zone start PFN for each node
[    0.000000] Early memory PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x00020000
[    0.000000] On node 0 totalpages: 130959
[    0.000000] free_area_init_node: node 0, pgdat c0ce4a00, node_mem_map 
df06c200
[    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: 992 pages used for memmap
[    0.000000]   Normal zone: 125984 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] SFI: Simple Firmware Interface v0.81 http://simplefirmware.org
[    0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] No local APIC present or hardware disabled
[    0.000000] APIC: disable apic facility
[    0.000000] APIC: switched to apic NOOP
[    0.000000] nr_irqs_gsi: 16
[    0.000000] Allocating PCI resources starting at 20000000 (gap: 
20000000:dff00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:1 
nr_node_ids:1
[    0.000000] PERCPU: Embedded 13 pages/cpu @dffee000 s31360 r0 d21888 u53248
[    0.000000] pcpu-alloc: s31360 r0 d21888 u53248 alloc=13*4096
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total 
pages: 129935
[    0.000000] Kernel command line: initrd=initram.igz BOOT_IMAGE=rescue32 
scandelay=5 netboot=http://10.0.0.5/sysrcd.dat console=ttyS0,115200 
rootpass=12345
[    0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
[    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] allocated 1048448 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want 
memory cgroups
[    0.000000] Initializing HighMem for node 0 (00000000:00000000)
[    0.000000] Memory: 488404k/524288k available (6107k kernel code, 35432k 
reserved, 3087k data, 8160k init, 0k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xffa95000 - 0xfffff000   (5544 kB)
[    0.000000]     pkmap   : 0xff400000 - 0xff800000   (4096 kB)
[    0.000000]     vmalloc : 0xe0800000 - 0xff3fe000   ( 491 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xe0000000   ( 512 MB)
[    0.000000]       .init : 0xc0cfb000 - 0xc14f3000   (8160 kB)
[    0.000000]       .data : 0xc09f6d09 - 0xc0cfab40   (3087 kB)
[    0.000000]       .text : 0xc0400000 - 0xc09f6d09   (6107 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor 
mode...Ok.
[    0.000000] SLUB: Genslabs=15, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, 
Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:2304 nr_irqs:256 16
[    0.000000] CPU 0 irqstacks, hard=de808000 soft=de80a000
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [ttyS0] enabled
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 498.025 MHz processor.
[    0.003009] Calibrating delay loop (skipped), value calculated using timer 
frequency.. 996.05 BogoMIPS (lpj=498025)
[    0.005019] pid_max: default: 32768 minimum: 301
[    0.007122] Security Framework initialized
[    0.008054] SELinux:  Disabled at boot.
[    0.009163] Mount-cache hash table entries: 512
[    0.012137] Initializing cgroup subsys cpuacct
[    0.013019] Initializing cgroup subsys memory
[    0.014054] Initializing cgroup subsys devices
[    0.015019] Initializing cgroup subsys freezer
[    0.016017] Initializing cgroup subsys net_cls
[    0.017019] Initializing cgroup subsys blkio
[    0.018040] Initializing cgroup subsys perf_event
[    0.019319] SMP alternatives: switching to UP code
[    0.045797] Freeing SMP alternatives: 28k freed
[    0.046274] weird, boot CPU (#0) not listed by the BIOS.
[    0.048012] SMP motherboard not detected.
[    0.049013] Local APIC not detected. Using dummy APIC emulation.
[    0.050010] SMP disabled
[    0.051013] Performance Events: no PMU driver, software events only.
[    0.054057] NMI watchdog: disabled (cpu0): hardware events not enabled
[    0.055143] Brought up 1 CPUs
[    0.056019] Total of 1 processors activated (996.05 BogoMIPS).
[    0.058632] devtmpfs: initialized
[    0.071166] atomic64 test passed for i386+ platform with CX8 and without SSE
[    0.072108] RTC time:  3:30:24, date: 01/05/14
[    0.074151] NET: Registered protocol family 16
[    0.079832] PCI: PCI BIOS revision 2.01 entry at 0xfac61, last bus=0
[    0.080010] PCI: Using configuration type 1 for base access
[    0.094683] bio: create slab <bio-0> at 0
[    0.096208] ACPI: Interpreter disabled.
[    0.097324] vgaarb: loaded
[    0.098606] SCSI subsystem initialized
[    0.099251] libata version 3.00 loaded.
[    0.100185] usbcore: registered new interface driver usbfs
[    0.101096] usbcore: registered new interface driver hub
[    0.102181] usbcore: registered new device driver usb
[    0.103446] PCI: Probing PCI hardware
[    0.104013] PCI: Probing PCI hardware (bus 00)
[    0.104029] PCI: root bus 00: using default resources
[    0.104248] PCI host bridge to bus 0000:00
[    0.105021] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    0.106015] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
[    0.107134] pci 0000:00:01.0: [1022:2080] type 00 class 0x060000
[    0.108063] pci 0000:00:01.2: [1022:2082] type 00 class 0x101000
[    0.108269] pci 0000:00:01.2: reg 10: [mem 0xa0000000-0xa0003fff]
[    0.109324] pci 0000:00:06.0: [1106:3053] type 00 class 0x020000
[    0.109368] pci 0000:00:06.0: reg 10: [io  0xe100-0xe1ff]
[    0.109402] pci 0000:00:06.0: reg 14: [mem 0xa0004000-0xa00040ff]
[    0.109510] pci 0000:00:06.0: supports D1 D2
[    0.109531] pci 0000:00:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.109594] pci 0000:00:07.0: [1106:3053] type 00 class 0x020000
[    0.109638] pci 0000:00:07.0: reg 10: [io  0xe200-0xe2ff]
[    0.109670] pci 0000:00:07.0: reg 14: [mem 0xa0004100-0xa00041ff]
[    0.109777] pci 0000:00:07.0: supports D1 D2
[    0.109798] pci 0000:00:07.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.109860] pci 0000:00:08.0: [1106:3053] type 00 class 0x020000
[    0.109903] pci 0000:00:08.0: reg 10: [io  0xe300-0xe3ff]
[    0.109936] pci 0000:00:08.0: reg 14: [mem 0xa0004200-0xa00042ff]
[    0.110081] pci 0000:00:08.0: supports D1 D2
[    0.110102] pci 0000:00:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.110173] pci 0000:00:09.0: [1106:3053] type 00 class 0x020000
[    0.110218] pci 0000:00:09.0: reg 10: [io  0xe400-0xe4ff]
[    0.110251] pci 0000:00:09.0: reg 14: [mem 0xa0004300-0xa00043ff]
[    0.110358] pci 0000:00:09.0: supports D1 D2
[    0.110379] pci 0000:00:09.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.110523] pci 0000:00:14.0: [1022:2090] type 00 class 0x060100
[    0.110706] pci 0000:00:14.0: reg 10: [io  0x6000-0x7fff]
[    0.110851] pci 0000:00:14.0: reg 14: [io  0x6100-0x61ff]
[    0.111014] pci 0000:00:14.0: reg 18: [io  0x6200-0x63ff]
[    0.111567] pci 0000:00:14.0: CS5536 ISA bridge bug detected (incorrect 
header); workaround applied.
[    0.112234] pci 0000:00:14.2: [1022:209a] type 00 class 0x010180
[    0.113694] pci 0000:00:14.2: reg 20: [io  0xe000-0xe00f]
[    0.114369] pci 0000:00:15.0: [1022:2094] type 00 class 0x0c0310
[    0.114613] pci 0000:00:15.0: reg 10: [mem 0xa0005000-0xa0005fff]
[    0.115861] pci 0000:00:15.1: [1022:2095] type 00 class 0x0c0320
[    0.116140] pci 0000:00:15.1: reg 10: [mem 0xa0006000-0xa0006fff]
[    0.120074] PCI: pci_cache_line_size set to 32 bytes
[    0.120434] reserve RAM buffer: 000000000009fc00 - 000000000009ffff 
[    0.121191] NetLabel: Initializing
[    0.122007] NetLabel:  domain hash size = 128
[    0.123004] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.124065] NetLabel:  unlabeled traffic allowed by default
[    0.126123] Switching to clocksource pit
[    0.211785] pnp: PnP ACPI: disabled
[    0.226660] pci_bus 0000:00: resource 4 [io  0x0000-0xffff]
[    0.226690] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
[    0.227071] NET: Registered protocol family 2
[    0.228836] IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
[    0.230614] TCP established hash table entries: 16384 (order: 5, 131072 
bytes)
[    0.231285] TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
[    0.232323] TCP: Hash tables configured (established 16384 bind 16384)
[    0.232939] TCP: reno registered
[    0.234198] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    0.235172] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    0.236776] NET: Registered protocol family 1
[    0.237702] RPC: Registered named UNIX socket transport module.
[    0.238692] RPC: Registered udp transport module.
[    0.239671] RPC: Registered tcp transport module.
[    0.240443] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.242399] PCI: CLS 32 bytes, default 32
[    0.362963] Unpacking initramfs...
[   11.900250] Freeing initrd memory: 11720k freed
[   11.917806] platform rtc_cmos: registered platform RTC device (no PNP device 
found)
[   11.919313] apm: BIOS not found.
[   11.922180] audit: initializing netlink socket (disabled)
[   11.923685] type=2000 audit(1388892634.923:1): initialized
[   12.298566] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[   12.315816] VFS: Disk quotas dquot_6.5.2
[   12.317239] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[   12.322813] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[   12.324791] NFS: Registering the id_resolver key type
[   12.326987] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[   12.327789] NTFS driver 2.1.30 [Flags: R/O].
[   12.328860] fuse init (API version 7.18)
[   12.331294] JFS: nTxBlock = 3907, nTxLock = 31259
[   12.335189] SGI XFS with ACLs, security attributes, realtime, large 
block/inode numbers, no debug enabled
[   12.339844] Btrfs loaded
[   12.341276] aufs 3.4-20130506
[   12.342316] msgmni has been set to 976
[   12.345507] alg: No test for stdrng (krng)
[   12.346732] NET: Registered protocol family 38
[   12.347663] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 
253)
[   12.348991] io scheduler noop registered
[   12.349992] io scheduler deadline registered
[   12.350962] io scheduler cfq registered (default)
[   12.352336] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[   12.354210] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[   12.355889] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[   12.357230] isapnp: Scanning for PnP cards...
[   12.717815] isapnp: No Plug & Play device found
[   12.718770] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[   12.720168] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[   12.722139] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[   12.732024] Non-volatile memory driver v1.3
[   12.733273] Linux agpgart interface v0.103
[   12.742001] loop: module loaded
[   12.744187] Fixed MDIO Bus: probed
[   12.745983] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   12.747787] ehci_hcd 0000:00:15.1: setting latency timer to 64
[   12.747826] ehci_hcd 0000:00:15.1: EHCI Host Controller
[   12.748553] ehci_hcd 0000:00:15.1: new USB bus registered, assigned bus 
number 1
[   12.771106] ehci_hcd 0000:00:15.1: irq 15, io mem 0xa0006000
[   12.778023] ehci_hcd 0000:00:15.1: USB 2.0 started, EHCI 1.00
[   12.780008] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[   12.781864] usb usb1: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[   12.782840] usb usb1: Product: EHCI Host Controller
[   12.783127] usb usb1: Manufacturer: Linux 3.4.66-std381-i586 ehci_hcd
[   12.784586] usb usb1: SerialNumber: 0000:00:15.1
[   12.786064] hub 1-0:1.0: USB hub found
[   12.787896] hub 1-0:1.0: 4 ports detected
[   12.789470] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   12.790927] ohci_hcd 0000:00:15.0: setting latency timer to 64
[   12.791011] ohci_hcd 0000:00:15.0: OHCI Host Controller
[   12.792583] ohci_hcd 0000:00:15.0: new USB bus registered, assigned bus 
number 2
[   12.793280] ohci_hcd 0000:00:15.0: irq 15, io mem 0xa0005000
[   12.877142] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[   12.877998] usb usb2: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[   12.879281] usb usb2: Product: OHCI Host Controller
[   12.880260] usb usb2: Manufacturer: Linux 3.4.66-std381-i586 ohci_hcd
[   12.881720] usb usb2: SerialNumber: 0000:00:15.0
[   12.883153] hub 2-0:1.0: USB hub found
[   12.883989] hub 2-0:1.0: 4 ports detected
[   12.885493] uhci_hcd: USB Universal Host Controller Interface driver
[   12.887387] usbcore: registered new interface driver usbserial
[   12.888360] usbcore: registered new interface driver usbserial_generic
[   12.890154] USB Serial support registered for generic
[   12.891278] usbserial: USB Serial Driver core
[   12.892890] i8042: PNP: No PS/2 controller found. Probing ports directly..
[   12.917999] Switching to clocksource tsc
[   13.145288] serio: i8042 KBD port at 0x60,0x64 irq 1
[   13.150792] mousedev: PS/2 mouse device common for all mice
[   13.157395] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
[   13.163940] rtc0: alarms up to one day, 114 bytes nvram
[   13.169742] device-mapper: uevent: version 1.0.3
[   13.174930] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: 
address@hidden
[   13.183734] cpuidle: using governor ladder
[   13.187875] cpuidle: using governor menu
[   13.191874] EFI Variables Facility v0.08 2004-May-17
[   13.198056] usbcore: registered new interface driver usbhid
[   13.203672] usbhid: USB HID core driver
[   13.208334] ip_tables: (C) 2000-2006 Netfilter Core Team
[   13.213764] TCP: cubic registered
[   13.217118] Initializing XFRM netlink socket
[   13.222400] NET: Registered protocol family 10
[   13.228203] Mobile IPv6
[   13.230694] NET: Registered protocol family 17
[   13.235313] Registering the dns_resolver key type
[   13.240522] Using IPI No-Shortcut mode
[   13.245041] registered taskstats version 1
[   13.250087]   Magic number: 14:136:512
[   13.254106] rtc_cmos rtc_cmos: setting system clock to 2014-01-05 03:30:37 
UTC (1388892637)
[   13.262778] Initializing network drop monitor service
[   13.268772] Freeing unused kernel memory: 8160k freed
[   13.285001] Write protecting the kernel text: 6108k
[   13.290231] Write protecting the kernel read-only data: 2584k
[   15.930127] pata_cs5536 0000:00:14.2: setting latency timer to 64
[   15.971929] scsi0 : pata_cs5536
[   15.976393] scsi1 : pata_cs5536
[   15.978885] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xe000 irq 14
[   15.978911] ata2: DUMMY
[   15.980476] via_rhine: v1.10-LK1.5.1 2010-10-09 Written by Donald Becker
[   16.003151] via-rhine 0000:00:06.0: eth0: VIA Rhine III (Management Adapter) 
at 0xa0004000, 00:00:24:d0:70:a0, IRQ 11
[   16.003964] via-rhine 0000:00:06.0: eth0: MII PHY found at address 1, status 
0x786d advertising 01e1 Link 45e1
[   16.035038] via-rhine 0000:00:07.0: eth1: VIA Rhine III (Management Adapter) 
at 0xa0004100, 00:00:24:d0:70:a1, IRQ 5
[   16.035873] via-rhine 0000:00:07.0: eth1: MII PHY found at address 1, status 
0x7849 advertising 05e1 Link 0000
[   16.148113] ata1.00: CFA: SanDisk SDCFH-016G, HDX 7.03, max UDMA/66
[   16.148143] ata1.00: 31250432 sectors, multi 0: LBA48 
[   16.148179] ata1.00: limited to UDMA/33 due to 40-wire cable
[   16.153987] ata1.00: configured for UDMA/33
[   16.154769] scsi 0:0:0:0: Direct-Access     ATA      SanDisk SDCFH-01 HDX  
PQ: 0 ANSI: 5
[   16.155753] sd 0:0:0:0: [sda] 31250432 512-byte logical blocks: (16.0 
GB/14.9 GiB)
[   16.156137] sd 0:0:0:0: [sda] Write Protect is off
[   16.156163] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[   16.156331] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[   16.158820] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   16.169701]  sda: sda1 sda2 sda3 sda4
[   16.172409] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   16.185231] via-rhine 0000:00:08.0: eth2: VIA Rhine III (Management Adapter) 
at 0xa0004200, 00:00:24:d0:70:a2, IRQ 9
[   16.186034] via-rhine 0000:00:08.0: eth2: MII PHY found at address 1, status 
0x7849 advertising 05e1 Link 0000
[   16.265127] via-rhine 0000:00:09.0: eth3: VIA Rhine III (Management Adapter) 
at 0xa0004300, 00:00:24:d0:70:a3, IRQ 12
[   16.265930] via-rhine 0000:00:09.0: eth3: MII PHY found at address 1, status 
0x7849 advertising 05e1 Link 0000
[   40.905552] md: linear personality registered for level -1
[   40.916515] md: multipath personality registered for level -4
[   40.927973] md: raid0 personality registered for level 0
[   40.942583] md: raid1 personality registered for level 1
[   40.953180] async_tx: api initialized (async)
[   40.959607] xor: measuring software checksum speed
[   40.964117]    8regs     :   388.000 MB/sec
[   40.969111]    8regs_prefetch:   328.000 MB/sec
[   40.974114]    32regs    :   228.000 MB/sec
[   40.979123]    32regs_prefetch:   204.000 MB/sec
[   40.984103]    pII_mmx   :   832.000 MB/sec
[   40.989102]    p5_mmx    :   656.000 MB/sec
[   40.989120] xor: using function: pII_mmx (832.000 MB/sec)
[   41.019209] raid6: int32x1     54 MB/s
[   41.036457] raid6: int32x2     78 MB/s
[   41.053886] raid6: int32x4     74 MB/s
[   41.070825] raid6: int32x8     62 MB/s
[   41.087432] raid6: mmxx1      152 MB/s
[   41.104350] raid6: mmxx2      207 MB/s
[   41.121089] raid6: sse1x1     148 MB/s
[   41.138268] raid6: sse1x2     210 MB/s
[   41.138284] raid6: using algorithm sse1x2 (210 MB/s)
[   41.157387] md: raid6 personality registered for level 6
[   41.157410] md: raid5 personality registered for level 5
[   41.157429] md: raid4 personality registered for level 4
[   41.191535] md: raid10 personality registered for level 10
[   41.428524] ADDRCONF(NETDEV_UP): eth1: link is not ready
[   41.443691] ADDRCONF(NETDEV_UP): eth2: link is not ready
[   41.459026] ADDRCONF(NETDEV_UP): eth3: link is not ready
[   51.456054] eth0: no IPv6 routers present
[  101.238037] UDF-fs: warning (device sda): udf_fill_super: No partition found 
(1)
[  101.432894] UDF-fs: warning (device sda1): udf_fill_super: No partition 
found (1)
[  101.536901] EXT3-fs (sda2): error: couldn't mount because of unsupported 
optional features (240)
[  101.540883] EXT2-fs (sda2): error: couldn't mount because of unsupported 
optional features (240)
[  101.584765] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: 
(null)
[  101.832884] UDF-fs: warning (device sda3): udf_fill_super: No partition 
found (1)
[  101.936863] EXT3-fs (sda4): error: couldn't mount because of unsupported 
optional features (240)
[  101.940843] EXT2-fs (sda4): error: couldn't mount because of unsupported 
optional features (240)
[  101.996241] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: 
(null)
[  102.009896] aufs test_add:294:mount[437]: uid/gid/perm /squashfs 0/0/0755, 
0/0/01777
[  119.073998] systemd-udevd[998]: starting version 200
[  123.283262] ACPI Exception: AE_BAD_PARAMETER, Thread 3724272768 could not 
acquire Mutex [0x1] (20120320/utmutex-276)
[  123.283539] ACPI Exception: AE_BAD_PARAMETER, Thread 3724272768 could not 
acquire Mutex [0x1] (20120320/utmutex-276)
[  123.283747] cs5535-gpio cs5535-gpio: reserved resource region [io  
0x6100-0x61ff]
[  123.290282] gpiochip_add: registered GPIOs 0 to 31 on device: cs5535-gpio
[  123.292313] ACPI Exception: AE_BAD_PARAMETER, Thread 3724272768 could not 
acquire Mutex [0x1] (20120320/utmutex-276)
[  123.292540] ACPI Exception: AE_BAD_PARAMETER, Thread 3724272768 could not 
acquire Mutex [0x1] (20120320/utmutex-276)
[  123.292820] ACPI Exception: AE_BAD_PARAMETER, Thread 3724272768 could not 
acquire Mutex [0x1] (20120320/utmutex-276)
[  123.293010] cs5535-mfd 0000:00:14.0: 5 devices registered.
[  123.780511] AMD Geode RNG detected
[  123.866244] microcode: AMD CPU family 0x5 not supported
[  124.290342] cs5535-mfgpt cs5535-mfgpt: reserved resource region [io  
0x6200-0x63ff]
[  124.290381] cs5535-mfgpt cs5535-mfgpt: 8 MFGPT timers available
[  124.594437] cs5535-smb cs5535-smb: SCx200 device 'CS5535 ACB0' registered
[  124.704507] geode-aes: GEODE AES engine enabled.
[  135.168988] microcode: AMD CPU family 0x5 not supported
[  136.070798] warning: process `hwsetup' used the deprecated sysctl system 
call with 1.23.
[  185.715747] md: Autodetecting RAID arrays.
[  185.715769] md: Scanned 0 and added 0 devices.
[  185.715783] md: autorun ...
[  185.715795] md: ... autorun DONE.

lsmod from sysresccd:
Module                  Size  Used by
scx200_acb             12367  0 
i2c_core               21853  1 scx200_acb
cs5535_mfgpt           12565  0 
cs5535_mfd             12406  0 
geode_aes              12406  0 
geode_rng              12406  0 
serio_raw              12408  0 
raid10                 32847  0 
raid456                57495  0 
async_raid6_recov      12416  1 raid456
async_pq               12437  2 raid456,async_raid6_recov
raid6_pq               82592  2 async_pq,async_raid6_recov
async_xor              12392  3 async_pq,raid456,async_raid6_recov
xor                    20586  1 async_xor
async_memcpy           12365  2 raid456,async_raid6_recov
async_tx               12511  5 
async_pq,raid456,async_xor,async_memcpy,async_raid6_recov
raid1                  28786  0 
raid0                  16463  0 
multipath              12367  0 
linear                 12367  0 
ata_generic            12406  0 
pata_acpi              12406  0 
pata_amd               12406  0 
via_rhine              20598  0 
pata_cs5536            12406  3 
mii                    12599  1 via_rhine

lshw from sysresccd:
sysresccd                 
    description: Computer
    width: 32 bits
  *-core
       description: Motherboard
       physical id: 0
     *-memory
          description: System memory
          physical id: 0
          size: 496MiB
     *-cpu
          product: Geode(TM) Integrated Processor by AMD PCS
          vendor: Advanced Micro Devices [AMD]
          physical id: 1
          bus info: address@hidden
          version: 5.10.2
          size: 500MHz
          width: 32 bits
          capabilities: fpu fpu_exception wp de pse tsc msr cx8 sep pge cmov 
clflush mmx mmxext 3dnowext 3dnow up
     *-pci
          description: Host bridge
          product: CS5536 [Geode companion] Host Bridge
          vendor: Advanced Micro Devices [AMD]
          physical id: 100
          bus info: address@hidden:00:01.0
          version: 33
          width: 32 bits
          clock: 66MHz
          configuration: latency=248
        *-generic
             description: Entertainment encryption device
             product: Geode LX AES Security Block
             vendor: Advanced Micro Devices [AMD]
             physical id: 1.2
             bus info: address@hidden:00:01.2
             version: 00
             width: 32 bits
             clock: 66MHz
             capabilities: bus_master
             configuration: driver=Geode LX AES latency=0
             resources: irq:10 memory:a0000000-a0003fff
        *-network:0
             description: Ethernet interface
             product: VT6105M [Rhine-III]
             vendor: VIA Technologies, Inc.
             physical id: 6
             bus info: address@hidden:00:06.0
             logical name: eth0
             version: 96
             serial: 00:00:24:d0:70:a0
             size: 100Mbit/s
             capacity: 100Mbit/s
             width: 32 bits
             clock: 33MHz
             capabilities: pm bus_master cap_list ethernet physical tp mii 10bt 
10bt-fd 100bt 100bt-fd autonegotiation
             configuration: autonegotiation=on broadcast=yes driver=via-rhine 
driverversion=1.5.1 duplex=full ip=10.0.0.101 latency=64 link=yes maxlatency=8 
mingnt=3 multicast=yes port=MII speed=100Mbit/s
             resources: irq:11 ioport:e100(size=256) memory:a0004000-a00040ff
        *-network:1
             description: Ethernet interface
             product: VT6105M [Rhine-III]
             vendor: VIA Technologies, Inc.
             physical id: 7
             bus info: address@hidden:00:07.0
             logical name: eth1
             version: 96
             serial: 00:00:24:d0:70:a1
             size: 10Mbit/s
             capacity: 100Mbit/s
             width: 32 bits
             clock: 33MHz
             capabilities: pm bus_master cap_list ethernet physical tp mii 10bt 
10bt-fd 100bt 100bt-fd autonegotiation
             configuration: autonegotiation=on broadcast=yes driver=via-rhine 
driverversion=1.5.1 duplex=half latency=64 link=no maxlatency=8 mingnt=3 
multicast=yes port=MII speed=10Mbit/s
             resources: irq:5 ioport:e200(size=256) memory:a0004100-a00041ff
        *-network:2
             description: Ethernet interface
             product: VT6105M [Rhine-III]
             vendor: VIA Technologies, Inc.
             physical id: 8
             bus info: address@hidden:00:08.0
             logical name: eth2
             version: 96
             serial: 00:00:24:d0:70:a2
             size: 10Mbit/s
             capacity: 100Mbit/s
             width: 32 bits
             clock: 33MHz
             capabilities: pm bus_master cap_list ethernet physical tp mii 10bt 
10bt-fd 100bt 100bt-fd autonegotiation
             configuration: autonegotiation=on broadcast=yes driver=via-rhine 
driverversion=1.5.1 duplex=half latency=64 link=no maxlatency=8 mingnt=3 
multicast=yes port=MII speed=10Mbit/s
             resources: irq:9 ioport:e300(size=256) memory:a0004200-a00042ff
        *-network:3
             description: Ethernet interface
             product: VT6105M [Rhine-III]
             vendor: VIA Technologies, Inc.
             physical id: 9
             bus info: address@hidden:00:09.0
             logical name: eth3
             version: 96
             serial: 00:00:24:d0:70:a3
             size: 10Mbit/s
             capacity: 100Mbit/s
             width: 32 bits
             clock: 33MHz
             capabilities: pm bus_master cap_list ethernet physical tp mii 10bt 
10bt-fd 100bt 100bt-fd autonegotiation
             configuration: autonegotiation=on broadcast=yes driver=via-rhine 
driverversion=1.5.1 duplex=half latency=64 link=no maxlatency=8 mingnt=3 
multicast=yes port=MII speed=10Mbit/s
             resources: irq:12 ioport:e400(size=256) memory:a0004300-a00043ff
        *-isa
             description: ISA bridge
             product: CS5536 [Geode companion] ISA
             vendor: Advanced Micro Devices [AMD]
             physical id: 14
             bus info: address@hidden:00:14.0
             version: 03
             width: 32 bits
             clock: 66MHz
             capabilities: isa
             configuration: driver=cs5535-mfd latency=64
             resources: irq:0 ioport:6000(size=8) ioport:6100(size=256) 
ioport:6200(size=512)
        *-ide
             description: IDE interface
             product: CS5536 [Geode companion] IDE
             vendor: Advanced Micro Devices [AMD]
             physical id: 14.2
             bus info: address@hidden:00:14.2
             version: 01
             width: 32 bits
             clock: 66MHz
             capabilities: ide bus_master
             configuration: driver=pata_cs5536 latency=0
             resources: irq:0 ioport:1f0(size=8) ioport:3f6 ioport:170(size=8) 
ioport:376 ioport:e000(size=16)
        *-usb:0
             description: USB controller
             product: CS5536 [Geode companion] OHC
             vendor: Advanced Micro Devices [AMD]
             physical id: 15
             bus info: address@hidden:00:15.0
             version: 02
             width: 32 bits
             clock: 66MHz
             capabilities: ohci bus_master cap_list
             configuration: driver=ohci_hcd latency=0
             resources: irq:15 memory:a0005000-a0005fff
           *-usbhost
                product: OHCI Host Controller
                vendor: Linux 3.4.66-std381-i586 ohci_hcd
                physical id: 1
                bus info: address@hidden
                logical name: usb2
                version: 3.04
                capabilities: usb-1.10
                configuration: driver=hub slots=4 speed=12Mbit/s
        *-usb:1
             description: USB controller
             product: CS5536 [Geode companion] EHC
             vendor: Advanced Micro Devices [AMD]
             physical id: 15.1
             bus info: address@hidden:00:15.1
             version: 02
             width: 32 bits
             clock: 66MHz
             capabilities: ehci bus_master cap_list
             configuration: driver=ehci_hcd latency=0
             resources: irq:15 memory:a0006000-a0006fff
           *-usbhost
                product: EHCI Host Controller
                vendor: Linux 3.4.66-std381-i586 ehci_hcd
                physical id: 1
                bus info: address@hidden
                logical name: usb1
                version: 3.04
                capabilities: usb-2.00
                configuration: driver=hub slots=4 speed=480Mbit/s
     *-scsi
          physical id: 2
          logical name: scsi0
          capabilities: emulated
        *-disk
             description: ATA Disk
             product: SanDisk SDCFH-01
             physical id: 0.0.0
             bus info: address@hidden:0.0.0
             logical name: /dev/sda
             version: HDX
             serial: BEZ081913192902
             size: 14GiB (16GB)
             capabilities: removable
             configuration: ansiversion=5 sectorsize=512
           *-medium
                physical id: 0
                logical name: /dev/sda
                size: 14GiB (16GB)
                capabilities: gpt-1.00 partitioned partitioned:gpt
                configuration: guid=b602792d-21de-4fdd-b5e6-7db2e121108f
              *-volume:0
                   description: BIOS Boot partition
                   vendor: EFI
                   physical id: 1
                   logical name: /dev/sda1
                   serial: 0675b6f7-9aea-437c-82d8-caf9dc63ba07
                   capacity: 10239KiB
                   capabilities: nofs
              *-volume:1
                   description: EXT4 volume
                   vendor: Linux
                   physical id: 2
                   logical name: /dev/sda2
                   logical name: /mnt/gentoo/boot
                   version: 1.0
                   serial: d57ed6cf-ab50-494a-8a0e-802e78912ce3
                   size: 512MiB
                   capabilities: journaled extended_attributes large_files 
huge_files dir_nlink recover extents ext4 ext2 initialized
                   configuration: created=1980-04-29 22:59:31 filesystem=ext4 
lastmountpoint=/mnt/gentoo/boot modified=2014-01-10 17:32:14 mount.fstype=ext4 
mount.options=rw,noatime,data=ordered mounted=2014-01-10 17:32:14 state=mounted
              *-volume:2
                   description: Linux swap volume
                   vendor: Linux
                   physical id: 3
                   logical name: /dev/sda3
                   version: 1
                   serial: bbb065c0-ea36-46ac-b029-7cd5b374fab8
                   size: 2047MiB
                   capacity: 2047MiB
                   capabilities: nofs swap initialized
                   configuration: filesystem=swap pagesize=4095
              *-volume:3
                   description: EXT4 volume
                   vendor: Linux
                   physical id: 4
                   logical name: /dev/sda4
                   logical name: /mnt/gentoo
                   version: 1.0
                   serial: 65adddf8-5cae-4b13-a9b0-750e37fa9453
                   size: 12GiB
                   capacity: 12GiB
                   capabilities: journaled extended_attributes large_files 
huge_files dir_nlink recover extents ext4 ext2 initialized
                   configuration: created=1980-04-29 22:59:42 filesystem=ext4 
lastmountpoint=/ modified=2014-01-10 17:27:06 mount.fstype=ext4 
mount.options=rw,relatime,data=ordered mounted=2014-01-10 17:27:06 state=mounted

Regards:
Cor

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

[Prev in Thread] Current Thread [Next in Thread]