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

Re: HELP: test kernel patches on the real thing



Hi,

Attached are the dmesg outputs, first for the patch below alone, and second for both patches.  By the way, patch told me the patch below is malformed at line 21, "static bool i2c_powermac_get_type(struct i2c_adapter *adap," so I applied the five insertions and four deletions manually (and triple checked).

Regards,

Dan

--------------------------------------------
On Mon, 5/4/15, Wolfram Sang <wsa@the-dreams.de> wrote:

 Subject: Re: HELP: test kernel patches on the real thing
 To: "Dan DeVoto" <dand1972@yahoo.com>
 Cc: debian-powerpc@lists.debian.org
 Date: Monday, May 4, 2015, 3:09 PM
 
 On Mon, May 04, 2015 at
 01:58:28PM -0700, Dan DeVoto wrote:
 >
 >Can you send me the device tree of your machine in the
 
 > >mean time?
 >
 
 > Sure, thanks for working on this, but
 I'm not sure what device 
 > tree
 refers to.  Is there a specific command output or text
 file
 > I should send you?
 
 Let's skip this for now, I
 think I found something. Can you test the
 attached patch a) without my previous patch and
 b) on top of the previous patch?
 
 From: Wolfram Sang <wsa@the-dreams.de>
 Subject: [PATCH] i2c: powermac: don't
 workaround for keywest
 
 commit 3a3dd0186f619b74e61e6f29dddcaf59af7d3cac
 ("i2c/powermac: Improve
 detection of
 devices from device-tree") added a codec device
 instantiation workaround unconditionally
 although it is only needed for
 onyx. Do it
 conditionally since keywest has its own codec
 instantiation
 in the sound drivers.
 
 Signed-off-by: Wolfram Sang
 <wsa@the-dreams.de>
 ---
 
 drivers/i2c/busses/i2c-powermac.c | 9 +++++----
  1 file changed, 5 insertions(+), 4
 deletions(-)
 
 diff --git
 a/drivers/i2c/busses/i2c-powermac.c
 b/drivers/i2c/busses/i2c-powermac.c
 index
 60a53c169ed2b3..9ccf156ded32ef 100644
 ---
 a/drivers/i2c/busses/i2c-powermac.c
 +++
 b/drivers/i2c/busses/i2c-powermac.c
 @@
 -288,7 +288,8 @@ static void i2c_powermac_add_missing(struct
 i2c_adapter *adap,
  
  static
 bool i2c_powermac_get_type(struct i2c_adapter *adap,
                         
 struct device_node *node,
 -       
                 u32 addr, char *type, int
 type_size)
 +               
         u32 addr, char *type, int type_size,
 +                        bool
 found_onyx)
  {
      char
 tmp[16];
  
 @@ -308,8 +309,8
 @@ static bool i2c_powermac_get_type(struct i2c_adapter
 *adap,
          return true;
      }
  
 -    /* Now look for known workarounds */
 -    if (!strcmp(node->name,
 "deq")) {
 +    /* Now look for
 known workarounds for onyx/aoa */
 +    if
 (found_onyx && !strcmp(node->name,
 "deq")) {
          /* Apple
 uses address 0x34 for TAS3001 and 0x35 for TAS3004 */
          if (addr == 0x34) {
              snprintf(type, type_size,
 "MAC,tas3001");
 @@ -365,7 +366,7
 @@ static void i2c_powermac_register_devices(struct
 i2c_adapter *adap,
  
     
     /* Make up a modalias */
     
     if (!i2c_powermac_get_type(adap, node, addr,
 -                   
    info.type, sizeof(info.type))) {
 +                   
    info.type, sizeof(info.type), found_onyx))
 {
              continue;
 
         }
dmesg output for the second patch alone, "i2c: powermac: don't workaround for keywest".

~$ dmesg
[    0.000000] Using PowerMac machine description
[    0.000000] Total memory = 640MB; using 2048kB for hash table (at c7e00000)
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.16.7-ckt9-custom2 (root@icebook) (gcc version 4.9.2 (Debian 4.9.2-10) ) #2 Tue May 5 01:43:34 PDT 2015
[    0.000000] Found initrd at 0xc1500000:0xc220b000
[    0.000000] Found UniNorth memory controller & host bridge @ 0xf8000000 revision: 0xc0
[    0.000000] Mapped at 0xff7c0000
[    0.000000] Found a Pangea mac-io controller, rev: 0, mapped at 0xff740000
[    0.000000] Processor NAP mode on idle enabled.
[    0.000000] PowerMac motherboard: iBook 2 rev. 2
[    0.000000] via-pmu: Server Mode is disabled
[    0.000000] PMU driver v2 initialized for Core99, firmware: 0c
[    0.000000] bootconsole [udbg0] enabled
[    0.000000] Found UniNorth PCI host bridge at 0x00000000f0000000. Firmware bus number: 0->0
[    0.000000] PCI host bridge /pci@f0000000  ranges:
[    0.000000]  MEM 0x00000000f1000000..0x00000000f1ffffff -> 0x00000000f1000000 
[    0.000000]   IO 0x00000000f0000000..0x00000000f07fffff -> 0x0000000000000000
[    0.000000]  MEM 0x0000000090000000..0x000000009fffffff -> 0x0000000090000000 
[    0.000000] Found UniNorth PCI host bridge at 0x00000000f2000000. Firmware bus number: 0->0
[    0.000000] PCI host bridge /pci@f2000000 (primary) ranges:
[    0.000000]  MEM 0x00000000f3000000..0x00000000f3ffffff -> 0x00000000f3000000 
[    0.000000]   IO 0x00000000f2000000..0x00000000f27fffff -> 0x0000000000000000
[    0.000000]  MEM 0x0000000080000000..0x000000008fffffff -> 0x0000000080000000 
[    0.000000] Found UniNorth PCI host bridge at 0x00000000f4000000. Firmware bus number: 0->0
[    0.000000] PCI host bridge /pci@f4000000  ranges:
[    0.000000]  MEM 0x00000000f5000000..0x00000000f5ffffff -> 0x00000000f5000000 
[    0.000000]   IO 0x00000000f4000000..0x00000000f47fffff -> 0x0000000000000000
[    0.000000] nvram: Checking bank 0...
[    0.000000] nvram: gen0=1076, gen1=1075
[    0.000000] nvram: Active bank is: 0
[    0.000000] nvram: OF partition at 0x410
[    0.000000] nvram: XP partition at 0x1020
[    0.000000] nvram: NR partition at 0x1120
[    0.000000] Top of RAM: 0x28000000, Total RAM: 0x28000000
[    0.000000] Memory hole size: 0MB
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00000000-0x27ffffff]
[    0.000000]   Normal   empty
[    0.000000]   HighMem  empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00000000-0x27ffffff]
[    0.000000] On node 0 totalpages: 163840
[    0.000000] free_area_init_node: node 0, pgdat c05ebf0c, node_mem_map c076b000
[    0.000000]   DMA zone: 1280 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 163840 pages, LIFO batch:31
[    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 162560
[    0.000000] Kernel command line: root=UUID=97b477c4-04c2-476e-9225-4eda6ca97833 ro nomodeset
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Sorting __ex_table...
[    0.000000] Memory: 626160K/655360K available (4252K kernel code, 320K rwdata, 1268K rodata, 292K init, 1395K bss, 29200K reserved, 0K highmem)
[    0.000000] Kernel virtual memory layout:
[    0.000000]   * 0xfffcf000..0xfffff000  : fixmap
[    0.000000]   * 0xff800000..0xffc00000  : highmem PTEs
[    0.000000]   * 0xfde72000..0xff800000  : early ioremap
[    0.000000]   * 0xe9000000..0xfde72000  : vmalloc & ioremap
[    0.000000] NR_IRQS:512 nr_irqs:512 16
[    0.000000] mpic: Resetting
[    0.000000] mpic: Setting up MPIC " MPIC 1   " version 1.2 at 80040000, max 1 CPUs
[    0.000000] mpic: ISU size: 64, shift: 6, mask: 3f
[    0.000000] mpic: Initializing for 64 sources
[    0.000000] GMT Delta read from XPRAM: -420 minutes, DST: on
[    0.000000] time_init: decrementer frequency = 24.835213 MHz
[    0.000000] time_init: processor frequency   = 700.000000 MHz
[    0.000018] clocksource: timebase mult[2843f1d2] shift[24] registered
[    0.000511] clockevent: decrementer mult[65b99bc] shift[32] cpu[0]
[    0.000825] Console: colour dummy device 80x25
[    0.001267] console [tty0] enabled
[    0.001683] bootconsole [udbg0] disabled
[    0.002481] pid_max: default: 32768 minimum: 301
[    0.002619] Security Framework initialized
[    0.002668] AppArmor: AppArmor disabled by boot time parameter
[    0.002713] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.002730] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.003962] Initializing cgroup subsys devices
[    0.004012] Initializing cgroup subsys freezer
[    0.004031] Initializing cgroup subsys net_cls
[    0.004068] Initializing cgroup subsys blkio
[    0.004096] Initializing cgroup subsys perf_event
[    0.006931] devtmpfs: initialized
[    0.008784] regulator-dummy: no parameters
[    0.009097] device-tree: Duplicate name in PowerPC,750@0, renamed to "l2-cache#1"
[    0.012894] NET: Registered protocol family 16
[    0.014359] KeyWest i2c @0xf8001003 irq 42 /uni-n@f8000000/i2c@f8001000
[    0.014385]  channel 0 bus <multibus>
[    0.014402]  channel 1 bus <multibus>
[    0.014483] KeyWest i2c @0x80018000 irq 26 /pci@f2000000/mac-io@17/i2c@18000
[    0.014511]  channel 0 bus <multibus>
[    0.014539] PMU i2c /pci@f2000000/mac-io@17/via-pmu@16000/pmu-i2c
[    0.014559]  channel 1 bus <multibus>
[    0.014575]  channel 2 bus <multibus>
[    0.015001] PCI: Probing PCI hardware
[    0.015181] PCI host bridge to bus 0000:00
[    0.015217] pci_bus 0000:00: root bus resource [io  0x802000-0x1001fff] (bus address [0x0000-0x7fffff])
[    0.015246] pci_bus 0000:00: root bus resource [mem 0xf1000000-0xf1ffffff]
[    0.015268] pci_bus 0000:00: root bus resource [mem 0x90000000-0x9fffffff]
[    0.015294] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.015319] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to ff
[    0.015382] pci 0000:00:0b.0: [106b:0027] type 00 class 0x060000
[    0.015678] pci 0000:00:10.0: [1002:4c59] type 00 class 0x030000
[    0.015708] pci 0000:00:10.0: reg 0x10: [mem 0x98000000-0x9fffffff pref]
[    0.015723] pci 0000:00:10.0: reg 0x14: [io  0x802400-0x8024ff]
[    0.015738] pci 0000:00:10.0: reg 0x18: [mem 0x90000000-0x9000ffff]
[    0.015768] pci 0000:00:10.0: reg 0x30: [mem 0x90020000-0x9003ffff pref]
[    0.015811] pci 0000:00:10.0: supports D1 D2
[    0.016021] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 00
[    0.016187] PCI host bridge to bus 0001:10
[    0.016208] pci_bus 0001:10: root bus resource [io  0x0000-0x7fffff]
[    0.016229] pci_bus 0001:10: root bus resource [mem 0xf3000000-0xf3ffffff]
[    0.016251] pci_bus 0001:10: root bus resource [mem 0x80000000-0x8fffffff]
[    0.016273] pci_bus 0001:10: root bus resource [bus 10-ff]
[    0.016294] pci_bus 0001:10: busn_res: [bus 10-ff] end is updated to ff
[    0.016337] pci 0001:10:0b.0: [106b:0028] type 00 class 0x060000
[    0.016564] pci 0001:10:17.0: [106b:0025] type 00 class 0xff0000
[    0.016584] pci 0001:10:17.0: reg 0x10: [mem 0x80000000-0x8007ffff]
[    0.016853] pci 0001:10:18.0: [106b:0026] type 00 class 0x0c0310
[    0.016878] pci 0001:10:18.0: reg 0x10: [mem 0x80081000-0x80081fff]
[    0.016943] pci 0001:10:18.0: supports D1 D2
[    0.016953] pci 0001:10:18.0: PME# supported from D1 D2 D3hot
[    0.017170] pci 0001:10:19.0: [106b:0026] type 00 class 0x0c0310
[    0.017193] pci 0001:10:19.0: reg 0x10: [mem 0x80080000-0x80080fff]
[    0.017259] pci 0001:10:19.0: supports D1 D2
[    0.017268] pci 0001:10:19.0: PME# supported from D1 D2 D3hot
[    0.017507] pci_bus 0001:10: busn_res: [bus 10-ff] end is updated to 10
[    0.017675] PCI host bridge to bus 0002:20
[    0.017699] pci_bus 0002:20: root bus resource [io  0xff7fe000-0xffffdfff] (bus address [0x0000-0x7fffff])
[    0.017728] pci_bus 0002:20: root bus resource [mem 0xf5000000-0xf5ffffff]
[    0.017751] pci_bus 0002:20: root bus resource [bus 20-ff]
[    0.017772] pci_bus 0002:20: busn_res: [bus 20-ff] end is updated to ff
[    0.017815] pci 0002:20:0b.0: [106b:0029] type 00 class 0x060000
[    0.018023] pci 0002:20:0e.0: [106b:0030] type 00 class 0x0c0010
[    0.018044] pci 0002:20:0e.0: reg 0x10: [mem 0xf5000000-0xf5000fff]
[    0.018095] pci 0002:20:0e.0: supports D1 D2
[    0.018104] pci 0002:20:0e.0: PME# supported from D0 D1 D2 D3hot
[    0.018310] pci 0002:20:0f.0: [106b:0024] type 00 class 0x020000
[    0.018329] pci 0002:20:0f.0: reg 0x10: [mem 0xf5200000-0xf53fffff]
[    0.018367] pci 0002:20:0f.0: reg 0x30: [mem 0xf5100000-0xf51fffff pref]
[    0.018579] pci_bus 0002:20: busn_res: [bus 20-ff] end is updated to 20
[    0.018653] PCI 0000:00 Cannot reserve Legacy IO [io  0x802000-0x802fff]
[    0.018675] pci_bus 0000:00: resource 4 [io  0x802000-0x1001fff]
[    0.018685] pci_bus 0000:00: resource 5 [mem 0xf1000000-0xf1ffffff]
[    0.018695] pci_bus 0000:00: resource 6 [mem 0x90000000-0x9fffffff]
[    0.018707] pci_bus 0001:10: resource 4 [io  0x0000-0x7fffff]
[    0.018718] pci_bus 0001:10: resource 5 [mem 0xf3000000-0xf3ffffff]
[    0.018728] pci_bus 0001:10: resource 6 [mem 0x80000000-0x8fffffff]
[    0.018739] pci_bus 0002:20: resource 4 [io  0xff7fe000-0xffffdfff]
[    0.018750] pci_bus 0002:20: resource 5 [mem 0xf5000000-0xf5ffffff]
[    0.025252] vgaarb: device added: PCI:0000:00:10.0,decodes=io+mem,owns=mem,locks=none
[    0.025297] vgaarb: loaded
[    0.025310] vgaarb: bridge control possible 0000:00:10.0
[    0.025721] SCSI subsystem initialized
[    0.025920] libata version 3.00 loaded.
[    0.026667] Switched to clocksource timebase
[    0.046107] NET: Registered protocol family 2
[    0.047347] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.047608] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
[    0.047844] TCP: Hash tables configured (established 8192 bind 8192)
[    0.048368] TCP: reno registered
[    0.048389] UDP hash table entries: 512 (order: 1, 8192 bytes)
[    0.048465] UDP-Lite hash table entries: 512 (order: 1, 8192 bytes)
[    0.048784] NET: Registered protocol family 1
[    0.048954] pci 0001:10:18.0: enabling device (0000 -> 0002)
[    0.102747] pci 0001:10:19.0: enabling device (0000 -> 0002)
[    0.158694] PCI: CLS mismatch (32 != 1020), using 32 bytes
[    0.159002] Unpacking initramfs...
[    1.094420] Freeing initrd memory: 13356K (c1500000 - c220b000)
[    1.095132] Thermal assist unit using timers, shrink_timer: 500 jiffies
[    1.096271] futex hash table entries: 256 (order: -1, 3072 bytes)
[    1.096366] audit: initializing netlink subsys (disabled)
[    1.096512] audit: type=2000 audit(1430845657.092:1): initialized
[    1.097698] VFS: Disk quotas dquot_6.5.2
[    1.097780] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    1.097919] msgmni has been set to 1251
[    1.099193] alg: No test for stdrng (krng)
[    1.099312] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    1.099344] io scheduler noop registered
[    1.099363] io scheduler deadline registered
[    1.099522] io scheduler cfq registered (default)
[    1.100050] radeonfb 0000:00:10.0: enabling device (0086 -> 0087)
[    1.293965] radeonfb 0000:00:10.0: Invalid ROM contents
[    1.293995] radeonfb (0000:00:10.0): Invalid ROM signature 8080 should be 0xaa55
[    1.302705] radeonfb: Retrieved PLL infos from Open Firmware
[    1.302728] radeonfb: Reference=27.00 MHz (RefDiv=12) Memory=166.00 Mhz, System=166.00 MHz
[    1.302750] radeonfb: PLL min 12000 max 35000
[    1.399720] i2c i2c-2: unable to read EDID block.
[    1.551706] i2c i2c-2: unable to read EDID block.
[    1.703707] i2c i2c-2: unable to read EDID block.
[    1.855706] i2c i2c-3: unable to read EDID block.
[    2.007709] i2c i2c-3: unable to read EDID block.
[    2.159706] i2c i2c-3: unable to read EDID block.
[    2.274671] radeonfb: Monitor 1 type LCD found
[    2.274686] radeonfb: EDID probed
[    2.274698] radeonfb: Monitor 2 type no found
[    2.286672] radeonfb: Using Firmware dividers 0x0001003a from PPLL 0
[    2.610670] radeonfb: Dynamic Clock Power Management enabled
[    3.022543] Console: switching to colour frame buffer device 128x48
[    3.103057] radeonfb: Backlight initialized (radeonbl0)
[    3.103237] radeonfb (0000:00:10.0): ATI Radeon 4c59 "LY"
[    3.104145] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    3.105445] pmac_zilog: 0.6 (Benjamin Herrenschmidt <benh@kernel.crashing.org>)
[    3.105750] Serial: MPC52xx PSC UART driver
[    3.105995] Generic non-volatile memory driver v1.1
[    3.106330] Linux agpgart interface v0.103
[    3.106535] agpgart-uninorth 0000:00:0b.0: Apple UniNorth/Pangea chipset
[    3.109326] agpgart-uninorth 0000:00:0b.0: configuring for size idx: 64
[    3.109703] agpgart-uninorth 0000:00:0b.0: AGP aperture is 256M @ 0x0
[    3.110162] MacIO PCI driver attached to Pangea chipset
[    3.111996] 0.00013020:ch-a: ttyPZ0 at MMIO 0x80013020 (irq = 22, base_baud = 230400) is a Z85c30 ESCC - Serial port
[    3.112785] 0.00013000:ch-b: ttyPZ1 at MMIO 0x80013000 (irq = 23, base_baud = 230400) is a Z85c30 ESCC - Serial port
[    3.114454] adb: starting probe task...
[    3.369331] adb devices: [2]: 2 c3 [3]: 3 1 [7]: 7 1f
[    3.376015] ADB keyboard at 2, handler 1
[    3.376182] Detected ADB keyboard, type ANSI.
[    3.376581] input: ADB keyboard as /devices/virtual/input/input0
[    3.376995] input: ADB Powerbook buttons as /devices/virtual/input/input1
[    3.392490] ADB mouse at 3, handler set to 4 (trackpad)
[    3.452461] input: ADB mouse as /devices/virtual/input/input2
[    3.452667] adb: finished probe task...
[    4.130686] pata-macio 0.0001f000:ata-4: Activating pata-macio chipset KeyLargo ATA-4, Apple bus ID 2
[    4.131860] scsi0 : pata_macio
[    4.139040] ata1: PATA max UDMA/66 irq 19
[    4.146488] mousedev: PS/2 mouse device common for all mice
[    4.154032] rtc-generic rtc-generic: rtc core: registered rtc-generic as rtc0
[    4.161046] Registering PowerMac CPU frequency driver
[    4.167857] Low: 400 Mhz, High: 700 Mhz, Boot: 700 Mhz
[    4.174867] drop_monitor: Initializing network drop monitor service
[    4.182134] TCP: cubic registered
[    4.189150] NET: Registered protocol family 10
[    4.197000] mip6: Mobile IPv6
[    4.203982] NET: Registered protocol family 17
[    4.211034] Key type dns_resolver registered
[    4.218644] registered taskstats version 1
[    4.226256] input: PMU as /devices/virtual/input/input3
[    4.233501] rtc-generic rtc-generic: setting system clock to 2015-05-05 10:07:40 UTC (1430820460)
[    4.240601] PM: Hibernation image not present or could not be loaded.
[    5.063186] ata1.00: ATA-5: TOSHIBA MK3018GAS, Q3.03 B, max UDMA/100
[    5.070402] ata1.00: 58605120 sectors, multi 16: LBA 
[    5.077677] ata1.01: ATAPI: SONY    CD-RW  CRX800E, 1.3p, max MWDMA2
[    5.085102] ata1.00: limited to UDMA/33 due to 40-wire cable
[    5.099187] ata1.00: configured for UDMA/33
[    5.123008] ata1.01: configured for MWDMA2
[    5.135041] scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA MK3018GA 3 B  PQ: 0 ANSI: 5
[    5.145490] scsi 0:0:1:0: CD-ROM            SONY     CD-RW  CRX800E   1.3p PQ: 0 ANSI: 5
[    5.156505] Freeing unused kernel memory: 292K (c0568000 - c05b1000)
[    5.252650] systemd-udevd[52]: starting version 215
[    5.273122] random: systemd-udevd urandom read with 10 bits of entropy available
[    5.419498] usbcore: registered new interface driver usbfs
[    5.463158] sungem.c:v1.0 David S. Miller <davem@redhat.com>
[    5.474294] usbcore: registered new interface driver hub
[    5.505625] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
[    5.513842] cdrom: Uniform CD-ROM driver Revision: 3.20
[    5.521901] sd 0:0:0:0: [sda] 58605120 512-byte logical blocks: (30.0 GB/27.9 GiB)
[    5.532887] gem 0002:20:0f.0 eth0: Sun GEM (PCI) 10/100/1000BaseT Ethernet 00:03:93:99:74:70
[    5.545781] usbcore: registered new device driver usb
[    5.564796] sr 0:0:1:0: Attached scsi CD-ROM sr0
[    5.569439] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.587548] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    5.617652] sd 0:0:0:0: [sda] Write Protect is off
[    5.626048] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    5.631238] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.647135] sr 0:0:1:0: Attached scsi generic sg1 type 5
[    5.662801] firewire_ohci 0002:20:0e.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
[    5.680107] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.692349] ehci-pci: EHCI PCI platform driver
[    5.725087] ohci-pci: OHCI PCI platform driver
[    5.751685] ohci-pci 0001:10:18.0: OHCI PCI host controller
[    5.767623] ohci-pci 0001:10:18.0: new USB bus registered, assigned bus number 1
[    5.776399] ohci-pci 0001:10:18.0: irq 27, io mem 0x80081000
[    5.809416]  sda: [mac] sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14
[    5.837495] sd 0:0:0:0: [sda] Attached SCSI disk
[    5.883189] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
[    5.891907] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.900382] usb usb1: Product: OHCI PCI host controller
[    5.908764] usb usb1: Manufacturer: Linux 3.16.7-ckt9-custom2 ohci_hcd
[    5.917201] usb usb1: SerialNumber: 0001:10:18.0
[    5.926892] hub 1-0:1.0: USB hub found
[    5.935269] hub 1-0:1.0: 2 ports detected
[    5.944069] ohci-pci 0001:10:19.0: OHCI PCI host controller
[    5.952426] ohci-pci 0001:10:19.0: new USB bus registered, assigned bus number 2
[    5.960977] ohci-pci 0001:10:19.0: irq 28, io mem 0x80080000
[    6.042160] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    6.050673] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.059169] usb usb2: Product: OHCI PCI host controller
[    6.067520] usb usb2: Manufacturer: Linux 3.16.7-ckt9-custom2 ohci_hcd
[    6.075799] usb usb2: SerialNumber: 0001:10:19.0
[    6.084949] hub 2-0:1.0: USB hub found
[    6.093200] hub 2-0:1.0: 2 ports detected
[    6.171105] firewire_core 0002:20:0e.0: created device fw0: GUID 000393fffe997470, S400
[    7.541620] PM: Starting manual resume from disk
[    7.550178] PM: Hibernation image partition 8:12 present
[    7.550184] PM: Looking for hibernation image.
[    7.569890] PM: Image not found (code -22)
[    7.569897] PM: Hibernation image not present or could not be loaded.
[    7.607383] random: nonblocking pool is initialized
[    8.200945] EXT4-fs (sda13): mounted filesystem with ordered data mode. Opts: (null)
[    9.442900] systemd[1]: systemd 215 running in system mode. (+PAM +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ -SECCOMP -APPARMOR)
[    9.460558] systemd[1]: Detected architecture 'ppc'.
[    9.974009] systemd[1]: Inserted module 'autofs4'
[   10.004147] systemd[1]: Set hostname to <icebook>.
[   12.274449] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[   12.283382] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   12.291676] systemd[1]: Starting Remote File Systems (Pre).
[   12.308884] systemd[1]: Reached target Remote File Systems (Pre).
[   12.317329] systemd[1]: Starting Encrypted Volumes.
[   12.334186] systemd[1]: Reached target Encrypted Volumes.
[   12.342374] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[   12.350756] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[   12.359117] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
[   12.376703] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   12.385323] systemd[1]: Expecting device dev-disk-by\x2duuid-fdb8f9e3\x2d2abb\x2d4f68\x2d9cb4\x2d72f0c40f6585.device...
[   12.403336] systemd[1]: Expecting device dev-sda10.device...
[   12.421536] systemd[1]: Expecting device dev-sda11.device...
[   12.439737] systemd[1]: Starting Root Slice.
[   12.457991] systemd[1]: Created slice Root Slice.
[   12.466920] systemd[1]: Starting User and Session Slice.
[   12.485296] systemd[1]: Created slice User and Session Slice.
[   12.494378] systemd[1]: Starting Delayed Shutdown Socket.
[   12.512683] systemd[1]: Listening on Delayed Shutdown Socket.
[   12.521634] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[   12.539930] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[   12.548787] systemd[1]: Starting Journal Socket (/dev/log).
[   12.566866] systemd[1]: Listening on Journal Socket (/dev/log).
[   12.575749] systemd[1]: Starting udev Control Socket.
[   12.593579] systemd[1]: Listening on udev Control Socket.
[   12.602200] systemd[1]: Starting udev Kernel Socket.
[   12.619791] systemd[1]: Listening on udev Kernel Socket.
[   12.628279] systemd[1]: Starting Journal Socket.
[   12.645939] systemd[1]: Listening on Journal Socket.
[   12.654217] systemd[1]: Starting System Slice.
[   12.671090] systemd[1]: Created slice System Slice.
[   12.679345] systemd[1]: Started File System Check on Root Device.
[   12.687582] systemd[1]: Starting system-getty.slice.
[   12.704483] systemd[1]: Created slice system-getty.slice.
[   12.712719] systemd[1]: Starting Increase datagram queue length...
[   12.732958] systemd[1]: Mounting Debug File System...
[   12.759943] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[   12.786055] systemd[1]: Mounted Huge Pages File System.
[   12.798987] systemd[1]: Starting udev Coldplug all Devices...
[   12.893752] systemd[1]: Starting Load Kernel Modules...
[   13.264683] systemd[1]: Started Set Up Additional Binary Formats.
[   13.272853] systemd[1]: Mounting POSIX Message Queue File System...
[   13.292146] systemd[1]: Starting Slices.
[   13.319697] systemd[1]: Reached target Slices.
[   13.340169] systemd[1]: Started Create list of required static device nodes for the current kernel.
[   13.359960] systemd[1]: Starting Create Static Device Nodes in /dev...
[   13.449397] systemd[1]: Started udev Coldplug all Devices.
[   13.504186] systemd[1]: Mounted POSIX Message Queue File System.
[   13.523486] systemd[1]: Mounted Debug File System.
[   13.550374] systemd[1]: Started Increase datagram queue length.
[   13.625918] systemd[1]: Starting Syslog Socket.
[   13.644197] systemd[1]: Listening on Syslog Socket.
[   13.653238] systemd[1]: Starting Journal Service...
[   13.686662] systemd[1]: Started Journal Service.
[   13.698155] lp: driver loaded but no devices found
[   14.117772] fuse init (API version 7.23)
[   14.545012] cfg80211: Calling CRDA to update world regulatory domain
[   14.575876] orinoco 0.15 (David Gibson <hermes@gibson.dropbear.id.au>, Pavel Roskin <proski@gnu.org>, et al)
[   14.607051] airport 0.15 (Benjamin Herrenschmidt <benh@kernel.crashing.org>)
[   14.607165] airport: Physical address 80030000
[   14.842905] systemd-udevd[143]: starting version 215
[   15.811421] airport 0.00030000:radio: Hardware identity 0005:0001:0001:0002
[   15.819601] airport 0.00030000:radio: Station identity  001f:0001:0008:0046
[   15.827443] airport 0.00030000:radio: Firmware determined as Lucent/Agere 8.70
[   15.904731] airport 0.00030000:radio: firmware: direct-loading firmware agere_sta_fw.bin
[   15.993517] airport 0.00030000:radio: Hardware identity 0005:0001:0001:0002
[   16.001260] airport 0.00030000:radio: Station identity  001f:0002:0009:0030
[   16.008684] airport 0.00030000:radio: Firmware determined as Lucent/Agere 9.48
[   16.016093] airport 0.00030000:radio: Ad-hoc demo mode supported
[   16.023426] airport 0.00030000:radio: IEEE standard IBSS ad-hoc mode supported
[   16.030761] airport 0.00030000:radio: WEP supported, 104-bit key
[   16.038033] airport 0.00030000:radio: WPA-PSK supported
[   16.789765] PowerMac i2c bus pmu 2 registered
[   16.797911] PowerMac i2c bus pmu 1 registered
[   16.805339] PowerMac i2c bus mac-io 0 registered
[   16.812321] i2c i2c-6: i2c-powermac: modalias failure on /pci@f2000000/mac-io@17/i2c@18000/deq@6a
[   16.819599] i2c i2c-6: No i2c address for /pci@f2000000/mac-io@17/i2c@18000/i2c-modem
[   16.829748] PowerMac i2c bus uni-n 1 registered
[   16.842237] i2c i2c-7: i2c-powermac: modalias failure on /uni-n@f8000000/i2c@f8001000/cereal@1c0
[   16.852000] PowerMac i2c bus uni-n 0 registered
[   17.271028] i2c i2c-0: PMac Keywest Audio: attach_adapter method is deprecated
[   17.278394] i2c i2c-0: Please use another way to instantiate your i2c_client
[   17.285593] i2c i2c-1: PMac Keywest Audio: attach_adapter method is deprecated
[   17.292800] i2c i2c-1: Please use another way to instantiate your i2c_client
[   17.300011] i2c i2c-2: PMac Keywest Audio: attach_adapter method is deprecated
[   17.307226] i2c i2c-2: Please use another way to instantiate your i2c_client
[   17.314419] i2c i2c-3: PMac Keywest Audio: attach_adapter method is deprecated
[   17.321652] i2c i2c-3: Please use another way to instantiate your i2c_client
[   17.328903] i2c i2c-4: PMac Keywest Audio: attach_adapter method is deprecated
[   17.336153] i2c i2c-4: Please use another way to instantiate your i2c_client
[   17.343452] i2c i2c-5: PMac Keywest Audio: attach_adapter method is deprecated
[   17.350797] i2c i2c-5: Please use another way to instantiate your i2c_client
[   17.358163] i2c i2c-6: PMac Keywest Audio: attach_adapter method is deprecated
[   17.365614] i2c i2c-6: Please use another way to instantiate your i2c_client
[   17.397798] i2c i2c-7: PMac Keywest Audio: attach_adapter method is deprecated
[   17.405584] i2c i2c-7: Please use another way to instantiate your i2c_client
[   17.413187] i2c i2c-8: PMac Keywest Audio: attach_adapter method is deprecated
[   17.420850] i2c i2c-8: Please use another way to instantiate your i2c_client
[   17.549972] input: PowerMac Beep as /devices/pci0001:10/0001:10:17.0/input/input4
[   18.165406] [drm] Initialized drm 1.1.0 20060810
[   19.569094] EXT4-fs (sda13): re-mounted. Opts: errors=remount-ro
[   19.701101] [drm] VGACON disable radeon kernel modesetting.
[   19.709139] [drm:radeon_init] *ERROR* No UMS support in radeon module!
[   20.912554] cfg80211: World regulatory domain updated:
[   20.920964] cfg80211:  DFS Master region: unset
[   20.921128] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   20.937204] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   20.945330] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   20.953284] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[   20.961119] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[   20.968988] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[   20.976728] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[   20.984417] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[   20.992071] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[   22.666261] hfsplus: Filesystem was not cleanly unmounted, running fsck.hfsplus is recommended.  mounting read-only.
[   22.847522] Adding 374996k swap on /dev/sda12.  Priority:-1 extents:1 across:374996k 
[   22.903832] hfsplus: Filesystem was not cleanly unmounted, running fsck.hfsplus is recommended.  mounting read-only.
[   23.261139] systemd-journald[140]: Received request to flush runtime journal from PID 1
[   24.679028] sungem_phy: PHY ID: 4061e4, addr: 0
[   24.679379] gem 0002:20:0f.0 eth0: Found BCM5221 PHY
[   24.679660] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   26.978002] RPC: Registered named UNIX socket transport module.
[   26.979196] RPC: Registered udp transport module.
[   26.980172] RPC: Registered tcp transport module.
[   26.981118] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   27.065637] FS-Cache: Loaded
[   27.086863] gem 0002:20:0f.0 eth0: Link is up at 100 Mbps, full-duplex
[   27.088120] gem 0002:20:0f.0 eth0: Pause is disabled
[   27.089139] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   27.142273] FS-Cache: Netfs 'nfs' registered for caching
[   27.352079] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[   31.579075] input: Mouseemu virtual keyboard as /devices/virtual/input/input5
[   31.595040] input: Mouseemu virtual mouse as /devices/virtual/input/input6
[   44.971333] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
dmesg output with both patches applied, 0002-sound-ppc-keywest-drop-using-attach-adapter.patch and the one labeled "i2c: powermac: don't workaround for keywest".

~$ dmesg
[    0.000000] Using PowerMac machine description
[    0.000000] Total memory = 640MB; using 2048kB for hash table (at c7e00000)
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.16.7-ckt9-custom3 (root@icebook) (gcc version 4.9.2 (Debian 4.9.2-10) ) #4 Wed May 6 13:44:30 PDT 2015
[    0.000000] Found initrd at 0xc1500000:0xc220b000
[    0.000000] Found UniNorth memory controller & host bridge @ 0xf8000000 revision: 0xc0
[    0.000000] Mapped at 0xff7c0000
[    0.000000] Found a Pangea mac-io controller, rev: 0, mapped at 0xff740000
[    0.000000] Processor NAP mode on idle enabled.
[    0.000000] PowerMac motherboard: iBook 2 rev. 2
[    0.000000] via-pmu: Server Mode is disabled
[    0.000000] PMU driver v2 initialized for Core99, firmware: 0c
[    0.000000] bootconsole [udbg0] enabled
[    0.000000] Found UniNorth PCI host bridge at 0x00000000f0000000. Firmware bus number: 0->0
[    0.000000] PCI host bridge /pci@f0000000  ranges:
[    0.000000]  MEM 0x00000000f1000000..0x00000000f1ffffff -> 0x00000000f1000000 
[    0.000000]   IO 0x00000000f0000000..0x00000000f07fffff -> 0x0000000000000000
[    0.000000]  MEM 0x0000000090000000..0x000000009fffffff -> 0x0000000090000000 
[    0.000000] Found UniNorth PCI host bridge at 0x00000000f2000000. Firmware bus number: 0->0
[    0.000000] PCI host bridge /pci@f2000000 (primary) ranges:
[    0.000000]  MEM 0x00000000f3000000..0x00000000f3ffffff -> 0x00000000f3000000 
[    0.000000]   IO 0x00000000f2000000..0x00000000f27fffff -> 0x0000000000000000
[    0.000000]  MEM 0x0000000080000000..0x000000008fffffff -> 0x0000000080000000 
[    0.000000] Found UniNorth PCI host bridge at 0x00000000f4000000. Firmware bus number: 0->0
[    0.000000] PCI host bridge /pci@f4000000  ranges:
[    0.000000]  MEM 0x00000000f5000000..0x00000000f5ffffff -> 0x00000000f5000000 
[    0.000000]   IO 0x00000000f4000000..0x00000000f47fffff -> 0x0000000000000000
[    0.000000] nvram: Checking bank 0...
[    0.000000] nvram: gen0=1082, gen1=1081
[    0.000000] nvram: Active bank is: 0
[    0.000000] nvram: OF partition at 0x410
[    0.000000] nvram: XP partition at 0x1020
[    0.000000] nvram: NR partition at 0x1120
[    0.000000] Top of RAM: 0x28000000, Total RAM: 0x28000000
[    0.000000] Memory hole size: 0MB
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00000000-0x27ffffff]
[    0.000000]   Normal   empty
[    0.000000]   HighMem  empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00000000-0x27ffffff]
[    0.000000] On node 0 totalpages: 163840
[    0.000000] free_area_init_node: node 0, pgdat c05ebf0c, node_mem_map c076b000
[    0.000000]   DMA zone: 1280 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 163840 pages, LIFO batch:31
[    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 162560
[    0.000000] Kernel command line: root=UUID=97b477c4-04c2-476e-9225-4eda6ca97833 ro nomodeset
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Sorting __ex_table...
[    0.000000] Memory: 626160K/655360K available (4252K kernel code, 320K rwdata, 1268K rodata, 292K init, 1395K bss, 29200K reserved, 0K highmem)
[    0.000000] Kernel virtual memory layout:
[    0.000000]   * 0xfffcf000..0xfffff000  : fixmap
[    0.000000]   * 0xff800000..0xffc00000  : highmem PTEs
[    0.000000]   * 0xfde72000..0xff800000  : early ioremap
[    0.000000]   * 0xe9000000..0xfde72000  : vmalloc & ioremap
[    0.000000] NR_IRQS:512 nr_irqs:512 16
[    0.000000] mpic: Resetting
[    0.000000] mpic: Setting up MPIC " MPIC 1   " version 1.2 at 80040000, max 1 CPUs
[    0.000000] mpic: ISU size: 64, shift: 6, mask: 3f
[    0.000000] mpic: Initializing for 64 sources
[    0.000000] GMT Delta read from XPRAM: -420 minutes, DST: on
[    0.000000] time_init: decrementer frequency = 24.835245 MHz
[    0.000000] time_init: processor frequency   = 700.000000 MHz
[    0.000018] clocksource: timebase mult[2843ee6c] shift[24] registered
[    0.000512] clockevent: decrementer mult[65b9a45] shift[32] cpu[0]
[    0.000825] Console: colour dummy device 80x25
[    0.001268] console [tty0] enabled
[    0.001684] bootconsole [udbg0] disabled
[    0.002482] pid_max: default: 32768 minimum: 301
[    0.002620] Security Framework initialized
[    0.002669] AppArmor: AppArmor disabled by boot time parameter
[    0.002714] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.002731] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.003963] Initializing cgroup subsys devices
[    0.004013] Initializing cgroup subsys freezer
[    0.004032] Initializing cgroup subsys net_cls
[    0.004069] Initializing cgroup subsys blkio
[    0.004097] Initializing cgroup subsys perf_event
[    0.006936] devtmpfs: initialized
[    0.008793] regulator-dummy: no parameters
[    0.009107] device-tree: Duplicate name in PowerPC,750@0, renamed to "l2-cache#1"
[    0.012904] NET: Registered protocol family 16
[    0.014368] KeyWest i2c @0xf8001003 irq 42 /uni-n@f8000000/i2c@f8001000
[    0.014395]  channel 0 bus <multibus>
[    0.014412]  channel 1 bus <multibus>
[    0.014493] KeyWest i2c @0x80018000 irq 26 /pci@f2000000/mac-io@17/i2c@18000
[    0.014521]  channel 0 bus <multibus>
[    0.014548] PMU i2c /pci@f2000000/mac-io@17/via-pmu@16000/pmu-i2c
[    0.014568]  channel 1 bus <multibus>
[    0.014584]  channel 2 bus <multibus>
[    0.015011] PCI: Probing PCI hardware
[    0.015190] PCI host bridge to bus 0000:00
[    0.015226] pci_bus 0000:00: root bus resource [io  0x802000-0x1001fff] (bus address [0x0000-0x7fffff])
[    0.015255] pci_bus 0000:00: root bus resource [mem 0xf1000000-0xf1ffffff]
[    0.015277] pci_bus 0000:00: root bus resource [mem 0x90000000-0x9fffffff]
[    0.015303] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.015328] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to ff
[    0.015391] pci 0000:00:0b.0: [106b:0027] type 00 class 0x060000
[    0.015687] pci 0000:00:10.0: [1002:4c59] type 00 class 0x030000
[    0.015717] pci 0000:00:10.0: reg 0x10: [mem 0x98000000-0x9fffffff pref]
[    0.015732] pci 0000:00:10.0: reg 0x14: [io  0x802400-0x8024ff]
[    0.015747] pci 0000:00:10.0: reg 0x18: [mem 0x90000000-0x9000ffff]
[    0.015777] pci 0000:00:10.0: reg 0x30: [mem 0x90020000-0x9003ffff pref]
[    0.015821] pci 0000:00:10.0: supports D1 D2
[    0.016032] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 00
[    0.016196] PCI host bridge to bus 0001:10
[    0.016218] pci_bus 0001:10: root bus resource [io  0x0000-0x7fffff]
[    0.016239] pci_bus 0001:10: root bus resource [mem 0xf3000000-0xf3ffffff]
[    0.016261] pci_bus 0001:10: root bus resource [mem 0x80000000-0x8fffffff]
[    0.016283] pci_bus 0001:10: root bus resource [bus 10-ff]
[    0.016304] pci_bus 0001:10: busn_res: [bus 10-ff] end is updated to ff
[    0.016347] pci 0001:10:0b.0: [106b:0028] type 00 class 0x060000
[    0.016573] pci 0001:10:17.0: [106b:0025] type 00 class 0xff0000
[    0.016594] pci 0001:10:17.0: reg 0x10: [mem 0x80000000-0x8007ffff]
[    0.016861] pci 0001:10:18.0: [106b:0026] type 00 class 0x0c0310
[    0.016885] pci 0001:10:18.0: reg 0x10: [mem 0x80081000-0x80081fff]
[    0.016950] pci 0001:10:18.0: supports D1 D2
[    0.016961] pci 0001:10:18.0: PME# supported from D1 D2 D3hot
[    0.017178] pci 0001:10:19.0: [106b:0026] type 00 class 0x0c0310
[    0.017201] pci 0001:10:19.0: reg 0x10: [mem 0x80080000-0x80080fff]
[    0.017266] pci 0001:10:19.0: supports D1 D2
[    0.017276] pci 0001:10:19.0: PME# supported from D1 D2 D3hot
[    0.017514] pci_bus 0001:10: busn_res: [bus 10-ff] end is updated to 10
[    0.017681] PCI host bridge to bus 0002:20
[    0.017705] pci_bus 0002:20: root bus resource [io  0xff7fe000-0xffffdfff] (bus address [0x0000-0x7fffff])
[    0.017734] pci_bus 0002:20: root bus resource [mem 0xf5000000-0xf5ffffff]
[    0.017757] pci_bus 0002:20: root bus resource [bus 20-ff]
[    0.017778] pci_bus 0002:20: busn_res: [bus 20-ff] end is updated to ff
[    0.017821] pci 0002:20:0b.0: [106b:0029] type 00 class 0x060000
[    0.018029] pci 0002:20:0e.0: [106b:0030] type 00 class 0x0c0010
[    0.018050] pci 0002:20:0e.0: reg 0x10: [mem 0xf5000000-0xf5000fff]
[    0.018101] pci 0002:20:0e.0: supports D1 D2
[    0.018110] pci 0002:20:0e.0: PME# supported from D0 D1 D2 D3hot
[    0.018316] pci 0002:20:0f.0: [106b:0024] type 00 class 0x020000
[    0.018335] pci 0002:20:0f.0: reg 0x10: [mem 0xf5200000-0xf53fffff]
[    0.018373] pci 0002:20:0f.0: reg 0x30: [mem 0xf5100000-0xf51fffff pref]
[    0.018585] pci_bus 0002:20: busn_res: [bus 20-ff] end is updated to 20
[    0.018659] PCI 0000:00 Cannot reserve Legacy IO [io  0x802000-0x802fff]
[    0.018681] pci_bus 0000:00: resource 4 [io  0x802000-0x1001fff]
[    0.018692] pci_bus 0000:00: resource 5 [mem 0xf1000000-0xf1ffffff]
[    0.018702] pci_bus 0000:00: resource 6 [mem 0x90000000-0x9fffffff]
[    0.018714] pci_bus 0001:10: resource 4 [io  0x0000-0x7fffff]
[    0.018724] pci_bus 0001:10: resource 5 [mem 0xf3000000-0xf3ffffff]
[    0.018734] pci_bus 0001:10: resource 6 [mem 0x80000000-0x8fffffff]
[    0.018746] pci_bus 0002:20: resource 4 [io  0xff7fe000-0xffffdfff]
[    0.018756] pci_bus 0002:20: resource 5 [mem 0xf5000000-0xf5ffffff]
[    0.025259] vgaarb: device added: PCI:0000:00:10.0,decodes=io+mem,owns=mem,locks=none
[    0.025304] vgaarb: loaded
[    0.025317] vgaarb: bridge control possible 0000:00:10.0
[    0.025728] SCSI subsystem initialized
[    0.025927] libata version 3.00 loaded.
[    0.026676] Switched to clocksource timebase
[    0.046112] NET: Registered protocol family 2
[    0.047354] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.047615] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
[    0.047851] TCP: Hash tables configured (established 8192 bind 8192)
[    0.048374] TCP: reno registered
[    0.048395] UDP hash table entries: 512 (order: 1, 8192 bytes)
[    0.048471] UDP-Lite hash table entries: 512 (order: 1, 8192 bytes)
[    0.048790] NET: Registered protocol family 1
[    0.048961] pci 0001:10:18.0: enabling device (0000 -> 0002)
[    0.102754] pci 0001:10:19.0: enabling device (0000 -> 0002)
[    0.158703] PCI: CLS mismatch (32 != 1020), using 32 bytes
[    0.159011] Unpacking initramfs...
[    1.094808] Freeing initrd memory: 13356K (c1500000 - c220b000)
[    1.095478] Thermal assist unit using timers, shrink_timer: 500 jiffies
[    1.096627] futex hash table entries: 256 (order: -1, 3072 bytes)
[    1.096723] audit: initializing netlink subsys (disabled)
[    1.096868] audit: type=2000 audit(1430976182.092:1): initialized
[    1.098048] VFS: Disk quotas dquot_6.5.2
[    1.098129] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    1.098266] msgmni has been set to 1251
[    1.099548] alg: No test for stdrng (krng)
[    1.099672] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    1.099705] io scheduler noop registered
[    1.099724] io scheduler deadline registered
[    1.099883] io scheduler cfq registered (default)
[    1.100422] radeonfb 0000:00:10.0: enabling device (0086 -> 0087)
[    1.294335] radeonfb 0000:00:10.0: Invalid ROM contents
[    1.294366] radeonfb (0000:00:10.0): Invalid ROM signature 8080 should be 0xaa55
[    1.302713] radeonfb: Retrieved PLL infos from Open Firmware
[    1.302737] radeonfb: Reference=27.00 MHz (RefDiv=12) Memory=166.00 Mhz, System=166.00 MHz
[    1.302759] radeonfb: PLL min 12000 max 35000
[    1.399729] i2c i2c-2: unable to read EDID block.
[    1.551716] i2c i2c-2: unable to read EDID block.
[    1.703715] i2c i2c-2: unable to read EDID block.
[    1.855715] i2c i2c-3: unable to read EDID block.
[    2.007718] i2c i2c-3: unable to read EDID block.
[    2.159714] i2c i2c-3: unable to read EDID block.
[    2.274679] radeonfb: Monitor 1 type LCD found
[    2.274694] radeonfb: EDID probed
[    2.274707] radeonfb: Monitor 2 type no found
[    2.286681] radeonfb: Using Firmware dividers 0x0001003a from PPLL 0
[    2.610678] radeonfb: Dynamic Clock Power Management enabled
[    3.022547] Console: switching to colour frame buffer device 128x48
[    3.103064] radeonfb: Backlight initialized (radeonbl0)
[    3.103245] radeonfb (0000:00:10.0): ATI Radeon 4c59 "LY"
[    3.104155] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    3.105452] pmac_zilog: 0.6 (Benjamin Herrenschmidt <benh@kernel.crashing.org>)
[    3.105759] Serial: MPC52xx PSC UART driver
[    3.106000] Generic non-volatile memory driver v1.1
[    3.106335] Linux agpgart interface v0.103
[    3.106537] agpgart-uninorth 0000:00:0b.0: Apple UniNorth/Pangea chipset
[    3.109326] agpgart-uninorth 0000:00:0b.0: configuring for size idx: 64
[    3.109704] agpgart-uninorth 0000:00:0b.0: AGP aperture is 256M @ 0x0
[    3.110159] MacIO PCI driver attached to Pangea chipset
[    3.112005] 0.00013020:ch-a: ttyPZ0 at MMIO 0x80013020 (irq = 22, base_baud = 230400) is a Z85c30 ESCC - Serial port
[    3.112798] 0.00013000:ch-b: ttyPZ1 at MMIO 0x80013000 (irq = 23, base_baud = 230400) is a Z85c30 ESCC - Serial port
[    3.114468] adb: starting probe task...
[    3.367269] adb devices: [2]: 2 c3 [3]: 3 1 [7]: 7 1f
[    3.373920] ADB keyboard at 2, handler 1
[    3.374086] Detected ADB keyboard, type ANSI.
[    3.374491] input: ADB keyboard as /devices/virtual/input/input0
[    3.374923] input: ADB Powerbook buttons as /devices/virtual/input/input1
[    3.390383] ADB mouse at 3, handler set to 4 (trackpad)
[    3.450586] input: ADB mouse as /devices/virtual/input/input2
[    3.450804] adb: finished probe task...
[    4.130697] pata-macio 0.0001f000:ata-4: Activating pata-macio chipset KeyLargo ATA-4, Apple bus ID 2
[    4.131865] scsi0 : pata_macio
[    4.139040] ata1: PATA max UDMA/66 irq 19
[    4.146483] mousedev: PS/2 mouse device common for all mice
[    4.154034] rtc-generic rtc-generic: rtc core: registered rtc-generic as rtc0
[    4.161052] Registering PowerMac CPU frequency driver
[    4.167866] Low: 400 Mhz, High: 700 Mhz, Boot: 700 Mhz
[    4.174872] drop_monitor: Initializing network drop monitor service
[    4.182130] TCP: cubic registered
[    4.189147] NET: Registered protocol family 10
[    4.197002] mip6: Mobile IPv6
[    4.203983] NET: Registered protocol family 17
[    4.211048] Key type dns_resolver registered
[    4.218649] registered taskstats version 1
[    4.226274] input: PMU as /devices/virtual/input/input3
[    4.233514] rtc-generic rtc-generic: setting system clock to 2015-05-06 22:23:05 UTC (1430950985)
[    4.240620] PM: Hibernation image not present or could not be loaded.
[    5.056316] ata1.00: ATA-5: TOSHIBA MK3018GAS, Q3.03 B, max UDMA/100
[    5.063534] ata1.00: 58605120 sectors, multi 16: LBA 
[    5.070814] ata1.01: ATAPI: SONY    CD-RW  CRX800E, 1.3p, max MWDMA2
[    5.078249] ata1.00: limited to UDMA/33 due to 40-wire cable
[    5.099197] ata1.00: configured for UDMA/33
[    5.123016] ata1.01: configured for MWDMA2
[    5.135160] scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA MK3018GA 3 B  PQ: 0 ANSI: 5
[    5.145629] scsi 0:0:1:0: CD-ROM            SONY     CD-RW  CRX800E   1.3p PQ: 0 ANSI: 5
[    5.156654] Freeing unused kernel memory: 292K (c0568000 - c05b1000)
[    5.252836] systemd-udevd[52]: starting version 215
[    5.273087] random: systemd-udevd urandom read with 10 bits of entropy available
[    5.437272] usbcore: registered new interface driver usbfs
[    5.449625] sungem.c:v1.0 David S. Miller <davem@redhat.com>
[    5.485487] usbcore: registered new interface driver hub
[    5.500955] gem 0002:20:0f.0 eth0: Sun GEM (PCI) 10/100/1000BaseT Ethernet 00:03:93:99:74:70
[    5.532774] usbcore: registered new device driver usb
[    5.554477] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.585298] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
[    5.593732] cdrom: Uniform CD-ROM driver Revision: 3.20
[    5.602054] sd 0:0:0:0: [sda] 58605120 512-byte logical blocks: (30.0 GB/27.9 GiB)
[    5.618851] firewire_ohci 0002:20:0e.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
[    5.628505] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.652462] sr 0:0:1:0: Attached scsi CD-ROM sr0
[    5.664789] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    5.682863] ehci-pci: EHCI PCI platform driver
[    5.699037] sd 0:0:0:0: [sda] Write Protect is off
[    5.707584] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    5.716405] sr 0:0:1:0: Attached scsi generic sg1 type 5
[    5.727092] ohci-pci: OHCI PCI platform driver
[    5.739728] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.748614] ohci-pci 0001:10:18.0: OHCI PCI host controller
[    5.763667] ohci-pci 0001:10:18.0: new USB bus registered, assigned bus number 1
[    5.772797] ohci-pci 0001:10:18.0: irq 27, io mem 0x80081000
[    5.858059] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
[    5.866660] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.875110] usb usb1: Product: OHCI PCI host controller
[    5.883515] usb usb1: Manufacturer: Linux 3.16.7-ckt9-custom3 ohci_hcd
[    5.891908] usb usb1: SerialNumber: 0001:10:18.0
[    5.906114] hub 1-0:1.0: USB hub found
[    5.914647] hub 1-0:1.0: 2 ports detected
[    5.924139]  sda: [mac] sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14
[    5.933189] ohci-pci 0001:10:19.0: OHCI PCI host controller
[    5.946418] ohci-pci 0001:10:19.0: new USB bus registered, assigned bus number 2
[    5.955208] ohci-pci 0001:10:19.0: irq 28, io mem 0x80080000
[    6.038249] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    6.046874] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.055504] usb usb2: Product: OHCI PCI host controller
[    6.064103] usb usb2: Manufacturer: Linux 3.16.7-ckt9-custom3 ohci_hcd
[    6.072645] usb usb2: SerialNumber: 0001:10:19.0
[    6.082061] hub 2-0:1.0: USB hub found
[    6.090612] hub 2-0:1.0: 2 ports detected
[    6.127052] firewire_core 0002:20:0e.0: created device fw0: GUID 000393fffe997470, S400
[    6.358242] sd 0:0:0:0: [sda] Attached SCSI disk
[    7.633917] PM: Starting manual resume from disk
[    7.642596] PM: Hibernation image partition 8:12 present
[    7.642601] PM: Looking for hibernation image.
[    7.643451] PM: Image not found (code -22)
[    7.643459] PM: Hibernation image not present or could not be loaded.
[    8.036362] random: nonblocking pool is initialized
[    8.222637] EXT4-fs (sda13): mounted filesystem with ordered data mode. Opts: (null)
[    9.421790] systemd[1]: systemd 215 running in system mode. (+PAM +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ -SECCOMP -APPARMOR)
[    9.439757] systemd[1]: Detected architecture 'ppc'.
[    9.897395] systemd[1]: Inserted module 'autofs4'
[    9.925872] systemd[1]: Set hostname to <icebook>.
[   12.210518] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[   12.219808] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   12.228398] systemd[1]: Starting Remote File Systems (Pre).
[   12.245618] systemd[1]: Reached target Remote File Systems (Pre).
[   12.254003] systemd[1]: Starting Encrypted Volumes.
[   12.270831] systemd[1]: Reached target Encrypted Volumes.
[   12.279173] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[   12.287728] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[   12.296250] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
[   12.314238] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   12.323136] systemd[1]: Expecting device dev-disk-by\x2duuid-fdb8f9e3\x2d2abb\x2d4f68\x2d9cb4\x2d72f0c40f6585.device...
[   12.341247] systemd[1]: Expecting device dev-sda10.device...
[   12.359326] systemd[1]: Expecting device dev-sda11.device...
[   12.377388] systemd[1]: Starting Root Slice.
[   12.395518] systemd[1]: Created slice Root Slice.
[   12.404386] systemd[1]: Starting User and Session Slice.
[   12.423615] systemd[1]: Created slice User and Session Slice.
[   12.432558] systemd[1]: Starting Delayed Shutdown Socket.
[   12.450720] systemd[1]: Listening on Delayed Shutdown Socket.
[   12.459645] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[   12.477881] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[   12.486714] systemd[1]: Starting Journal Socket (/dev/log).
[   12.504683] systemd[1]: Listening on Journal Socket (/dev/log).
[   12.513494] systemd[1]: Starting udev Control Socket.
[   12.531257] systemd[1]: Listening on udev Control Socket.
[   12.539828] systemd[1]: Starting udev Kernel Socket.
[   12.557331] systemd[1]: Listening on udev Kernel Socket.
[   12.565781] systemd[1]: Starting Journal Socket.
[   12.582532] systemd[1]: Listening on Journal Socket.
[   12.590778] systemd[1]: Starting System Slice.
[   12.607585] systemd[1]: Created slice System Slice.
[   12.615804] systemd[1]: Started File System Check on Root Device.
[   12.624061] systemd[1]: Starting system-getty.slice.
[   12.640933] systemd[1]: Created slice system-getty.slice.
[   12.649148] systemd[1]: Starting Increase datagram queue length...
[   12.669308] systemd[1]: Mounting Debug File System...
[   12.695863] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[   12.721231] systemd[1]: Mounted Huge Pages File System.
[   12.733841] systemd[1]: Starting udev Coldplug all Devices...
[   12.829780] systemd[1]: Starting Load Kernel Modules...
[   12.929004] systemd[1]: Started Set Up Additional Binary Formats.
[   12.937292] systemd[1]: Mounting POSIX Message Queue File System...
[   12.957611] systemd[1]: Starting Slices.
[   12.978569] systemd[1]: Reached target Slices.
[   13.032395] systemd[1]: Started Create list of required static device nodes for the current kernel.
[   13.042262] systemd[1]: Starting Create Static Device Nodes in /dev...
[   13.340058] systemd[1]: Mounted Debug File System.
[   13.360051] systemd[1]: Mounted POSIX Message Queue File System.
[   13.396193] systemd[1]: Started Increase datagram queue length.
[   13.474295] systemd[1]: Starting Syslog Socket.
[   13.492312] systemd[1]: Listening on Syslog Socket.
[   13.500624] systemd[1]: Starting Journal Service...
[   13.534768] systemd[1]: Started Journal Service.
[   13.931582] lp: driver loaded but no devices found
[   14.140662] fuse init (API version 7.23)
[   14.712414] cfg80211: Calling CRDA to update world regulatory domain
[   14.739122] systemd-udevd[142]: starting version 215
[   14.766502] orinoco 0.15 (David Gibson <hermes@gibson.dropbear.id.au>, Pavel Roskin <proski@gnu.org>, et al)
[   14.906878] airport 0.15 (Benjamin Herrenschmidt <benh@kernel.crashing.org>)
[   14.906998] airport: Physical address 80030000
[   16.114090] airport 0.00030000:radio: Hardware identity 0005:0001:0001:0002
[   16.122331] airport 0.00030000:radio: Station identity  001f:0001:0008:0046
[   16.130214] airport 0.00030000:radio: Firmware determined as Lucent/Agere 8.70
[   16.212523] airport 0.00030000:radio: firmware: direct-loading firmware agere_sta_fw.bin
[   16.301537] airport 0.00030000:radio: Hardware identity 0005:0001:0001:0002
[   16.309426] airport 0.00030000:radio: Station identity  001f:0002:0009:0030
[   16.316955] airport 0.00030000:radio: Firmware determined as Lucent/Agere 9.48
[   16.324375] airport 0.00030000:radio: Ad-hoc demo mode supported
[   16.331758] airport 0.00030000:radio: IEEE standard IBSS ad-hoc mode supported
[   16.339132] airport 0.00030000:radio: WEP supported, 104-bit key
[   16.346443] airport 0.00030000:radio: WPA-PSK supported
[   16.979586] PowerMac i2c bus pmu 2 registered
[   16.987765] PowerMac i2c bus pmu 1 registered
[   16.995275] PowerMac i2c bus mac-io 0 registered
[   17.002269] i2c i2c-6: i2c-powermac: modalias failure on /pci@f2000000/mac-io@17/i2c@18000/deq@6a
[   17.009462] i2c i2c-6: No i2c address for /pci@f2000000/mac-io@17/i2c@18000/i2c-modem
[   17.019539] PowerMac i2c bus uni-n 1 registered
[   17.031029] i2c i2c-7: i2c-powermac: modalias failure on /uni-n@f8000000/i2c@f8001000/cereal@1c0
[   17.043334] PowerMac i2c bus uni-n 0 registered
[   17.466248] input: PowerMac Beep as /devices/pci0001:10/0001:10:17.0/input/input4
[   18.155525] [drm] Initialized drm 1.1.0 20060810
[   18.527629] EXT4-fs (sda13): re-mounted. Opts: errors=remount-ro
[   19.105223] [drm] VGACON disable radeon kernel modesetting.
[   19.112561] [drm:radeon_init] *ERROR* No UMS support in radeon module!
[   21.892396] cfg80211: World regulatory domain updated:
[   21.899959] cfg80211:  DFS Master region: unset
[   21.900124] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   21.914715] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   21.922198] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   21.929621] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[   21.936965] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[   21.944377] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[   21.951683] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[   21.959021] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[   21.966365] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[   23.769120] hfsplus: Filesystem was not cleanly unmounted, running fsck.hfsplus is recommended.  mounting read-only.
[   23.817548] hfsplus: Filesystem was not cleanly unmounted, running fsck.hfsplus is recommended.  mounting read-only.
[   23.941726] Adding 374996k swap on /dev/sda12.  Priority:-1 extents:1 across:374996k 
[   24.390545] systemd-journald[135]: Received request to flush runtime journal from PID 1
[   25.775099] sungem_phy: PHY ID: 4061e4, addr: 0
[   25.775469] gem 0002:20:0f.0 eth0: Found BCM5221 PHY
[   25.776823] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   28.081990] RPC: Registered named UNIX socket transport module.
[   28.083121] RPC: Registered udp transport module.
[   28.084034] RPC: Registered tcp transport module.
[   28.084917] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   28.138837] FS-Cache: Loaded
[   28.182877] gem 0002:20:0f.0 eth0: Link is up at 100 Mbps, full-duplex
[   28.184063] gem 0002:20:0f.0 eth0: Pause is disabled
[   28.185013] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   28.228256] FS-Cache: Netfs 'nfs' registered for caching
[   28.406360] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[   32.552862] input: Mouseemu virtual keyboard as /devices/virtual/input/input5
[   32.566855] input: Mouseemu virtual mouse as /devices/virtual/input/input6
[   45.539371] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready

Reply to: