To content | To menu | To search

Pogoplug に Debian GNU/Linux をインストールする

技研ベースさんで開催された「技研フリマ」で購入した、ジャンク扱いの Pogoplug に Debian GNU/Linux をインストールした。とりあえず USB メモリからの起動まで。

個体は Pogoplug POGO-P25 。こちら で紹介されているものと恐らく同じ。

ジャンク扱いで買ったのでアカウントは無し。

準備するものは、

  • USB メモリ
  • USB UART (3.3V)
  • USB メモリが読み書きできる Linux マシン
  • Dropbox アカウント

私の場合は USB UART がちょうど無かったので、手元にあった Raspberry Pi 3B+ で UART も兼用した。

開け方はPogoplug が起動しないので分解してみたら電源のコネクタが抜けかけだった @ IT漂着メモ を確認。結構大変。

Pogoplug の種類は Hardware Hacking ARM @ Jeff's Linux Notes で確認。今回の POGO-P25 は通称 V3 と呼ばれている模様。WiFi 無し。

UART のピンアサインは CloudEngines Pogoplug Pro / V3 @ OpenWrt の下の方に。LED 側から順に GND、Rx、Tx、VCC (3.3V) 。通信設定は 115200bps、8bit、パリティ無し、ストップビット 1bit 。 コネクタは 2mm ピッチ。手元にあった、Grove - 4 pin Female Jumper to Grove 4 pin Conversion Cable (5 PCs per PAck) というケーブルのコネクタからロック用の爪をカットするとちょうど使えた。Switch Science でも買える。

何も手を加えずに起動すると、U-Boot から Linux まで普通に起動して 、さらに自動で root でログインしたシェルが開く。


とりあえず USB メモリの内容をセットアップする。Linux マシンで作業する。ここでは USB メモリは「/dev/sda」として認識されているので、各自の環境に合わせて書き換えること。

USBメモリをつないで勝手にマウントされるようなシステムの場合は、先にアンマウントしておくこと。

pi@pogo:~ $ sudo fdisk /dev/sda

Welcome to fdisk (util-linux 2.36.1).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.


Command (m for help): d
Selected partition 1
Partition 1 has been deleted.

Command (m for help): n
Partition type
   p   primary (0 primary, 0 extended, 4 free)
   e   extended (container for logical partitions)
Select (default p): p
Partition number (1-4, default 1): 1
First sector (2048-30339071, default 2048):
Last sector, +/-sectors or +/-size{K,M,G,T,P} (2048-30339071, default 30339071):

Created a new partition 1 of type 'Linux' and of size 14.5 GiB.

Command (m for help): p
Disk /dev/sda: 14.47 GiB, 15533604864 bytes, 30339072 sectors
Disk model: STORE N GO
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x76f04b95

Device     Boot Start      End  Sectors  Size Id Type
/dev/sda1        2048 30339071 30337024 14.5G 83 Linux

Command (m for help): i
Selected partition 1
         Device: /dev/sda1
          Start: 2048
            End: 30339071
        Sectors: 30337024
      Cylinders: 312753
           Size: 14.5G
             Id: 83
           Type: Linux
    Start-C/H/S: 21/11/1
      End-C/H/S: 453/90/1

Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.

pi@pogo:~ $ sudo mkfs.ext3 /dev/sda1
mke2fs 1.46.2 (28-Feb-2021)
Creating filesystem with 3792128 4k blocks and 948416 inodes
Filesystem UUID: 04963885-93d1-4eec-8289-559e564f61a0
Superblock backups stored on blocks:
        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208

Allocating group tables: done
Writing inode tables: done
Creating journal (16384 blocks): done
Writing superblocks and filesystem accounting information: done

pi@pogo:~ $ sudo tune2fs -L rootfs /dev/sda1

新品の USBメモリはだいたい Windows 向けのフォーマットなので Linux 向けに書き換える。

fdisk で、d で元のパーティションを削除、n でパーティション作成。primary タイプで、partition number は 1、first sector と last sector はデフォルトのまま Enter 。p と i でパーティション情報を念のため表示したら、w で反映して終了。

mkfs.ext3 をつかって Ext3 でフォーマット。

最後に tune2fs で念のためパーティションのラベルを rootfs に変更。


使うファイルをダウンロードしておく。

Linux Kernel 5.4.210 Oxnas (OX820) Pogo V3 package and Debian rootfs を開き、ブラウザのページ内検索で「17 May 2020」を検索。「Updated 17 May 2020」というところまで飛ぶ。

Dropbox から Debian-4.14.180-oxnas-tld-1-rootfs-bodhi.tar.bz2 をダウンロードする。

2015.10 U-Boot for Pogoplug V3 (OXNAS OX820) も開く。今日の時点では「Updated 23 Oct 2017」が最新。

Dropbox から uboot.2015.10-tld-2.ox820.bodhi.tar をダウンロードする。


Linux Kernel~ のページのコメントに従って、Linux マシンは一旦ログアウトし、root でログインし直す。sudo は使わない。

USBメモリをマウントする。ここでは /media/sda1 というディレクトリを作ってそこにマウントしている。各自の環境に合わせて書き換えること。

root@pogo:~# mount /dev/sda1 /media/sda1
root@pogo:~# cd /media/sda1/
root@pogo:/media/sda1# tar xjf /home/pi/Debian-4.14.180-oxnas-tld-1-rootfs-bodhi.tar.bz2
root@pogo:/media/sda1# ls
bin   dev  home  lost+found  mnt  proc  run   srv  tmp  var
boot  etc  lib   media       opt  root  sbin  sys  usr
root@pogo:/media/sda1# cp /home/pi/uboot.2015.10-tld-2.ox820.bodhi.tar ./
root@pogo:/media/sda1# cd /root/
root@pogo:~# umount /media/sda1

USBメモリに移動して、tar で Debian のファイルを展開。あとはついでに U-Boot のファイルもコピーしておく。


UART を接続した Pogoplug を起動し、USBメモリを接続する。私の環境では/tmp/.cemnt/mnt_sda1 に自動マウントされた。各自の環境に合わせて書き換えること。

U-Boot のファイルを展開する。

/ # cd /tmp
/tmp # tar vxf /tmp/.cemnt/mnt_sda1/uboot.2015.10-tld-2.ox820.bodhi.tar
uboot.2015.10-tld-2.ox820.mtd0.img
uboot.spl.2013.10.ox820.850mhz.mtd0.img
uboot.2015.10-tld-2.ox820.environment
uboot.2015.10-tld-2.ox820.environment.img
/tmp # cd .cemnt/mnt_sda1/

この先は、2015.10 U-Boot~ のページと情報が違っていたので、値を変えているところがあるので要注意。

/tmp # cat /proc/mtd
dev:    size   erasesize  name
mtd0: 08000000 00020000 "NAND 128MiB 3,3V 8-bit"
mtd1: 00e00000 00020000 "boot"
mtd2: 07200000 00020000 "rootfs"

ここで本来は mtd0 に boot、mtd1 に rootfs が書き込まれていて、mtd2 は無かった。とはいえ、size、erasesize、name をみると、boot と rootfs は同じ値になっていたので、ここはオリジナルのページの mtd0 と mtd1 を、手元では mtd1、mtd2 に読み替えて作業することにした。

/tmp # nanddump --noecc --omitoob -f mtd1 /dev/mtd1
-/bin/sh: nanddump: not found
/tmp # dmesg | grep -i 'bad'
<6>[    1.660000] Scanning device for bad blocks
<4>[    1.670000] Bad eraseblock 104 at 0x000000d00000
<4>[    1.730000] Bad eraseblock 910 at 0x0000071c0000
<4>[    1.730000] Bad eraseblock 949 at 0x0000076a0000
<5>[    2.220000] UBI: number of bad PEBs:         2
<5>[    2.250000] UBI: number of PEBs reserved for bad PEB handling: 9
/tmp # /usr/sbin/flash_erase /dev/mtd1 0x0 6
Erase Total 6 Units
Performing Flash Erase of length 131072 at offset 0xa0000 done
/tmp # /usr/sbin/nandwrite /dev/mtd1 uboot.spl.2013.10.ox820.850mhz.mtd0.img
Writing data to block 0 at offset 0x0
/tmp # /usr/sbin/nandwrite -s 262144 /dev/mtd1 uboot.2015.10-tld-2.ox820.mtd0.img
Writing data to block 2 at offset 0x40000
Writing data to block 3 at offset 0x60000
Writing data to block 4 at offset 0x80000
Writing data to block 5 at offset 0xa0000
/tmp # /usr/sbin/flash_erase /dev/mtd1 0x00100000 1
Erase Total 1 Units
Performing Flash Erase of length 131072 at offset 0x100000 done
/tmp # /usr/sbin/nandwrite -s 1048576 /dev/mtd1 uboot.2015.10-tld-2.ox820.environment.img
Writing data to block 8 at offset 0x100000
/tmp # reboot

nanddump など、読み出す系のコマンドはどれも入っていなかった。flash_erase と nandwrite もメッセージのフォーマットは違ったものの、表示内容は一緒だったので信用することにした。

USBメモリをつないだままでリブートすると Linux が起動しようとするものの、

[    4.787507] usb 1-1: new high-speed USB device number 2 using oxnas-ehci

ここで止まった(左の数字は時間なので気にしない)。どうやら Device Tree の問題だったようで、U-Boot の調整で対処。

U-Boot SPL 2013.10-tld-4 (Sep 07 2014 - 14:10:12)
  Boot device: NAND
Attempting to set PLLA to 850 MHz ...
  plla_ctrl0 : 0000020a
  plla_ctrl1 : 00330000
  plla_ctrl2 : 0065008b
  plla_ctrl3 : 000000f1

PLLA Set


U-Boot 2015.10-tld-2 (Oct 21 2017 - 22:00:02 -0700)
OXNAS OX820

DRAM:  128 MiB
NAND:  128 MiB
In:    serial
Out:   serial
Err:   serial
Net:   dwmac.40400000
Hit any key to stop autoboot:  0

ここで何かキーを押して起動を止める。

OX820> setenv dtb_file /boot/dts/ox820-pogoplug-classic.dtb
OX820> saveenv
Saving Environment to NAND...
Erasing NAND...
Erasing at 0x120000 -- 100% complete.
Writing to NAND... OK
OX820> reset

これで Linux が起動する。ユーザー名は root 、パスワードも root 。


ちなみに 2015.10 U-Boot for Pogoplug V3 (OXNAS OX820) のページにあった、/boot/uEnv.txt で

dtb_file=/boot/dts/ox820-pogoplug-classic.dtb

と指定すれば U-Boot の調整は不要のようだけれど、手元では何故か動作していない。


参考: 元のブートログ。

Stage-1 Bootloader XCE_STAGE1: 1.1: Tue Feb  8 01:40:26 PST 2011
Attempting to set PLLA to 700MHz ...
  plla_ctrl0 : 0x0000000A
  plla_ctrl1 : 0x000E0000
  plla_ctrl2 : 0x001C01A0
  plla_ctrl3 : 0x00000016
PLLA Set

Setup memory, testing
Reading NAND, Image 0
  Hdr len: 0x0001C030
  Hdr CRC: 0x39F6D832
 OK


U-Boot 1.1.2 (Jul 29 2010 - 19:36:07)

U-Boot code: 60D00000 -> 60D1C030  BSS: -> 60D21800
RAM Configuration:
        Bank #0: 60000000 128 MB
SRAM Configuration:
        64KB at 0x50000000
NAND:128 MiB
In:    serial
Out:   serial
Err:   serial
Setting Linux mem= boot arg value
Hit any key to stop autoboot:  0

Loading from device 0: 128MiB 3,3V 8-bit (offset 0x200000)
   -- Using 1bit ECC style encoding
   Image Name:   Linux-2.6.31.6_SMP_820
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    2258192 Bytes =  2.2 MB
   Load Address: 60008000
   Entry Point:  60008000
## Booting image at 60500000 ...
   Image Name:   Linux-2.6.31.6_SMP_820
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    2258192 Bytes =  2.2 MB
   Load Address: 60008000
   Entry Point:  60008000
   Verifying Checksum ... OK
OK

Starting kernel ...

Uncompressing Linux.............................................................
[    0.000000] Linux version 2.6.31.6_SMP_820 (bdietrich@brad-ux) (gcc version 1
[    0.000000] CPU: ARMv6-compatible processor [410fb025] revision 5 (ARMv7), cf
[    0.000000] CPU: VIPT nonaliasing data cache, VIPT nonaliasing instruction ce
[    0.000000] Machine: Oxsemi NAS
[    0.000000] 1 memory region
[    0.000000] Ignoring unrecognised tag 0x00000000
[    0.000000] Memory policy: ECC disabled, Data cache writealloc
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pa2
[    0.000000] Kernel command line: root=ubi0:rootfs ubi.mtd=2,512 rootfstype=us
[    0.000000] PID hash table entries: 512 (order: 9, 2048 bytes)
[    0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000] Memory: 128MB = 128MB total
[    0.000000] Memory: 125496KB available (3712K code, 275K data, 120K init, 0K)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:96
[    0.000000] OX820_RPS_init_irq: interrupts 64 to 96
[    0.010000] Console: colour dummy device 80x30
[    0.010000] console [ttyS0] enabled
[    0.020000] Calibrating delay loop... 279.34 BogoMIPS (lpj=1396736)
[    0.260000] Security Framework initialized
[    0.260000] Mount-cache hash table entries: 512
[    0.270000] CPU: Testing write buffer coherency: ok
[    0.270000] Calibrating local timer... 349.99MHz.
[    0.340000] CPU1: Booted secondary processor
[    0.440000] Calibrating delay loop... 279.34 BogoMIPS (lpj=1396736)
[    0.670000] Brought up 2 CPUs
[    0.680000] SMP: Total of 2 processors activated (558.69 BogoMIPS).
[    0.690000] NET: Registered protocol family 16
[    0.690000] Number of DMA channels = 4, version = 4
[    0.700000] Reserving a DMA channel for DirectRAID
[    0.700000] Allocating 389 SRAM generic DMA descriptors
[    0.720000] bio: create slab <bio-0> at 0
[    0.720000] SCSI subsystem initialized
[    0.750000] NET: Registered protocol family 2
[    0.750000] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.760000] Switched to NOHz mode on CPU #0
[    0.760000] TCP established hash table entries: 4096 (order: 3, 32768 bytes)
[    0.760000] Switched to NOHz mode on CPU #1
[    0.770000] TCP bind hash table entries: 4096 (order: 3, 32768 bytes)
[    0.780000] TCP: Hash tables configured (established 4096 bind 4096)
[    0.780000] TCP reno registered
[    0.790000] NET: Registered protocol family 1
[    0.790000] Create fragment cache
[    0.800000] fuse init (API version 7.12)
[    0.800000] msgmni has been set to 245
[    0.810000] alg: No test for stdrng (krng)
[    0.810000] io scheduler noop registered
[    0.820000] io scheduler anticipatory registered
[    0.820000] io scheduler deadline registered
[    0.830000] io scheduler cfq registered (default)
[    0.850000] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[    0.860000] serial8250: ttyS0 at MMIO 0x44200000 (irq = 55) is a 16550A
[    0.880000] brd: module loaded
[    0.880000] loop: module loaded
[    0.890000] ox820sata: OX820 sata core.
[    0.890000] scsi0 : oxnassata
[    0.900000] scsi1 : oxnassata
[    0.900000] ata1: SATA max UDMA/133 irq 50
[    0.900000] ata2: SATA max UDMA/133 irq 50
[    0.910000] ox820sata: reseting SATA core
[    1.270000] ata1: SATA link down (SStatus 0 SControl 300)
[    1.270000] ox820sata: reseting SATA core
[    1.630000] ata2: SATA link down (SStatus 0 SControl 300)
[    1.630000] tun: Universal TUN/TAP device driver, 1.6
[    1.640000] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.640000] NAND: Page read time 40ms
[    1.650000] NAND device: Manufacturer ID: 0xad, Chip ID: 0xf1 (Hynix NAND 12)
[    1.660000] Scanning device for bad blocks
[    1.670000] Bad eraseblock 104 at 0x000000d00000
[    1.730000] Bad eraseblock 910 at 0x0000071c0000
[    1.730000] Bad eraseblock 949 at 0x0000076a0000
[    1.740000] Creating 2 MTD partitions on "NAND 128MiB 3,3V 8-bit":
[    1.750000] 0x000000000000-0x000000e00000 : "boot"
[    1.760000] 0x000000e00000-0x000008000000 : "rootfs"
[    1.760000] UBI: attaching mtd2 to ubi0
[    1.770000] UBI: physical eraseblock size:   131072 bytes (128 KiB)
[    1.770000] UBI: logical eraseblock size:    129024 bytes
[    1.780000] UBI: smallest flash I/O unit:    2048
[    1.780000] UBI: sub-page size:              512
[    1.790000] UBI: VID header offset:          512 (aligned 512)
[    1.790000] UBI: data offset:                2048
[    2.200000] UBI: attached mtd2 to ubi0
[    2.210000] UBI: MTD device name:            "rootfs"
[    2.210000] UBI: MTD device size:            114 MiB
[    2.220000] UBI: number of good PEBs:        910
[    2.220000] UBI: number of bad PEBs:         2
[    2.230000] UBI: max. allowed volumes:       128
[    2.230000] UBI: wear-leveling threshold:    4096
[    2.230000] UBI: number of internal volumes: 1
[    2.240000] UBI: number of user volumes:     1
[    2.240000] UBI: available PEBs:             0
[    2.250000] UBI: total number of reserved PEBs: 910
[    2.250000] UBI: number of PEBs reserved for bad PEB handling: 9
[    2.260000] UBI: max/mean erase counter: 2/1
[    2.260000] UBI: image sequence number: 0
[    2.270000] UBI: background thread "ubi_bgt0d" started, PID 275
[    2.270000] mice: PS/2 mouse device common for all mice
[    2.280000] TCP cubic registered
[    2.280000] NET: Registered protocol family 10
[    2.290000] NET: Registered protocol family 17
[    2.290000] RPC: Registered udp transport module.
[    2.300000] RPC: Registered tcp transport module.
[    2.420000] UBIFS: recovery needed
[    2.550000] UBIFS: recovery completed
[    2.560000] UBIFS: mounted UBI device 0, volume 0, name "rootfs"
[    2.560000] UBIFS: file system size:   114315264 bytes (111636 KiB, 109 MiB,)
[    2.570000] UBIFS: journal size:       9033728 bytes (8822 KiB, 8 MiB, 71 LE)
[    2.580000] UBIFS: media format:       w4/r0 (latest is w4/r0)
[    2.580000] UBIFS: default compressor: zlib
[    2.590000] UBIFS: reserved for root:  0 bytes (0 KiB)
[    2.590000] VFS: Mounted root (ubifs filesystem) on device 0:10.
[    2.600000] Freeing init memory: 120K
[    3.450000] Probing for Synopsis GMAC, unit 0
[    3.460000] eth0: Tuning GMAC 0 RGMII timings
[    3.470000] eth0: PHY is Realtek RTL8211D, type 0x001cc914
[    3.480000] eth0: GMAC ver = 53, vendor ver = 18 at 0xed400000, IRQ 40
[    3.480000] eth0: Found PHY at address 3, type 0x001cc914 -> 10/100/1000
[    3.490000] eth0: Ethernet addr: 00:30:e0:00:00:00
[    3.510000] eth0: PHY is Realtek RTL8211D, type 0x001cc914
[    3.520000] Offload is not active on eth0
[    3.520000] Alloc'ing ARM descs 10240 bytes
[    3.520000] eth0: Resetting GMAC
[    3.530000] eth0: GMAC reset complete
[    3.530000] eth0: Setting Rx flow control thresholds for LAN port
[    4.090000] eth0: PHY is Realtek RTL8211D, type 0x001cc914
[    4.590000] eth0: link down
[    6.550000] ADDRCONF(NETDEV_UP): eth0: link is not ready
udhcpc (v1.16.1) started
HWADDR 00 0x25 0x31 0x02 0xa5 0x1c
PIP0 165
PIP1 28
cat: can't open '/etc/resolv.conf': No such file or directory
route: SIOCDELRT: No such process
grep: /etc/resolv.conf: No such file or directory
Sending discover...
Sending discover...
Sending discover...
HWADDR 00 0x25 0x31 0x02 0xa5 0x1c
PIP0 165
PIP1 28
No lease, forking to background
[   16.570000] usbcore: registered new interface driver usbfs
[   16.580000] usbcore: registered new interface driver hub
[   16.590000] usbcore: registered new device driver usb
[   16.650000] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   16.650000] oxnas-ehci oxnas-ehci.0: OXNAS EHCI Host Controller
[   16.660000] oxnas-ehci oxnas-ehci.0: new USB bus registered, assigned bus nu1
[   16.700000] oxnas-ehci oxnas-ehci.0: irq 39, io mem 0x00000000
[   16.720000] oxnas-ehci oxnas-ehci.0: USB 0.0 started, EHCI 1.00
[   16.730000] usb usb1: configuration #1 chosen from 1 choice
[   16.730000] hub 1-0:1.0: USB hub found
[   16.740000] hub 1-0:1.0: 2 ports detected
[   16.830000] Initializing USB Mass Storage driver...
[   16.840000] usbcore: registered new interface driver usb-storage
[   16.850000] USB Mass Storage support registered.
Tweaking default linux memory parameters...
[   17.070000] usb 1-1: new high speed USB device using oxnas-ehci and address 2
[   17.250000] ufsd: module license 'Commercial product' taints kernel.
[   17.250000] usb 1-1: configuration #1 chosen from 1 choice
[   17.260000] Disabling lock debugging due to kernel taint
[   17.270000] hub 1-1:1.0: USB hub found
[   17.270000] hub 1-1:1.0: 4 ports detected
[   17.540000] ufsd: driver 8.3 (008_A) with acl LBD=ON with ioctl loaded at bf0
[   17.540000] NTFS read/write support included
[   17.540000] Hfs+/HfsX read/write support included
Loading rt3070sta.ko:        [   17.880000] rtusb init rt2870 --->
[   17.890000] usbcore: registered new interface driver rt2870
Success
Loading xce.ko:              [   17.920000] Cloud Engines XCE Init [Version: 2.]
[   17.930000] XCE: CPU MEMORY MAP:
[   17.930000] XCE:   -- 0x00001000 - 0xbeffffff (3055 MB)  User Space Mappings
[   17.940000] XCE:   -- 0xbf000000 - 0xbfffffff (  16 MB)  Kernel module space
[   17.950000] XCE:   -- 0xc0000000 - 0xc7ffffff ( 128 MB)  Kernel direct-mappem
[   17.950000] XCE:   -- 0xc8800000 - 0xecffffff ( 584 MB)  Kernel vmalloc space
[   17.960000] XCE:   -- 0xed000000 - 0xfeffffff ( 287 MB)  Kernel platform spae
[   17.970000] XCE: CPU FEATURES:
[   17.970000] XCE:   -- I Cache:         enabled
[   17.970000] XCE:   -- D Cache:         enabled
[   17.980000] XCE:   -- Branch Predict:  disabled
[   17.980000] XCE:   -- MMU:             enabled
[   17.990000] XCE:   -- Alignment Abort: disabled
[   18.000000] XCE: BLPARAMS: Locating parameter block...
[   18.000000] XCE: BLPARAMS: reading 2048 bytes @ a0000
[   18.010000] XCE: Loaded Property Size: 2048
[   18.010000] XCE:    - 'cesvcid' -> 'ZEGUWK9HNKP58PREWJ32LDJRB6'
[   18.020000] XCE:    - 'ceboardver' -> 'PPV3'
[   18.020000] XCE: No board spec found matching boardid 'PPV3' -- Using 'PPRO1'
[   18.030000] XCE: Current GPIO State:
[   18.030000] XCE:  GPIO A input:        0xf679fff7
[   18.040000] XCE:  GPIO A OE status:    0x00000000
[   18.040000] XCE:  GPIO A IRQ enable:   0x00000000
[   18.050000] XCE:  GPIO A IRQ event:    0x00000000
[   18.050000] XCE:  GPIO A output state: 0x00000000
[   18.060000] XCE:  GPIO B input:        0x0003ffff
[   18.060000] XCE:  GPIO B OE status:    0x00030000
[   18.060000] XCE:  GPIO B IRQ enable:   0x00000000
[   18.070000] XCE:  GPIO B IRQ event:    0x00000000
[   18.070000] XCE:  GPIO B output state: 0x00030000
Success
Starting hbplug:             Success
/ # [   18.360000] XCE: BLPARAMS: Locating parameter block...
[   18.360000] XCE: BLPARAMS: reading 2048 bytes @ a0000
[   18.370000] XCE: BLPARAMS: reading 2048 bytes @ a0800
[   18.380000] XCE: BLPARAMS: reading 2048 bytes @ a1000
[   18.380000] XCE: BLPARAMS: reading 2048 bytes @ a1800
[   23.890000] XCE: XCE: LED -> DISCONNECTED

/ # uname -a
Linux Pogoplug 2.6.31.6_SMP_820 #96 SMP Tue Feb 8 12:08:54 PST 2011 armv6l GNU/x

参考: 現在のブートログ

U-Boot SPL 2013.10-tld-4 (Sep 07 2014 - 14:10:12)
  Boot device: NAND
Attempting to set PLLA to 850 MHz ...
  plla_ctrl0 : 0000020a
  plla_ctrl1 : 00330000
  plla_ctrl2 : 0065008b
  plla_ctrl3 : 000000f1

PLLA Set


U-Boot 2015.10-tld-2 (Oct 21 2017 - 22:00:02 -0700)
OXNAS OX820

DRAM:  128 MiB
NAND:  128 MiB
In:    serial
Out:   serial
Err:   serial
Net:   dwmac.40400000
Hit any key to stop autoboot:  0
starting USB...
USB0:   USB EHCI 1.00
scanning bus 0 for devices... 3 USB Device(s) found
       scanning usb for storage devices... 1 Storage Device(s) found

Reset IDE: SATA PHY not ready for device 0
ide_preinit failed

Partition Map for USB device 0  --   Partition Type: DOS

Part    Start Sector    Num Sectors     UUID            Type
  1     2048            30337024        76f04b95-01     83
loading envs from usb 0 ...
46 bytes read in 210 ms (0 Bytes/s)

no IDE devices available
importing envs ...
running scan_disk ...
Scan device usb
device usb 0:1
1 bytes read in 199 ms (0 Bytes/s)
Found bootable drive on usb 0
loading uImage ...
4600448 bytes read in 366 ms (12 MiB/s)
loading uInitrd ...
6464907 bytes read in 367 ms (16.8 MiB/s)
loading DTB /boot/dts/ox820-pogoplug-classic.dtb ...
8892 bytes read in 183 ms (46.9 KiB/s)
## Booting kernel from Legacy Image at 60500000 ...
   Image Name:   Linux-4.14.180-oxnas-tld-1
   Created:      2020-05-15   3:58:34 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    4600384 Bytes = 4.4 MiB
   Load Address: 60008000
   Entry Point:  60008000
   Verifying Checksum ... OK
## Loading init Ramdisk from Legacy Image at 60e00000 ...
   Image Name:   initramfs-4.14.180-oxnas-tld-1
   Created:      2020-05-15   3:58:49 UTC
   Image Type:   ARM Linux RAMDisk Image (gzip compressed)
   Data Size:    6464843 Bytes = 6.2 MiB
   Load Address: 60000000
   Entry Point:  60000000
   Verifying Checksum ... OK
## Flattened Device Tree blob at 62c00000
   Booting using the fdt blob at 0x62c00000
   Loading Kernel Image ... OK
   Loading Ramdisk to 677fc000, end 67e2654b ... OK
   Loading Device Tree to 677f6000, end 677fb2bb ... OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.14.180-oxnas-tld-1 (root@tldDebian) (gcc version0
[    0.000000] CPU: ARMv6-compatible processor [410fb025] revision 5 (ARMv7), cd
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instructie
[    0.000000] OF: fdt: Machine model: Pogoplug V3 Classic
[    0.000000] Memory policy: Data cache writealloc
[    0.000000] random: get_random_bytes called from start_kernel+0x84/0x3f8 wit0
[    0.000000] percpu: Embedded 15 pages/cpu s29548 r8192 d23700 u61440
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 32512
[    0.000000] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs root)
[    0.000000] PID hash table entries: 512 (order: -1, 2048 bytes)
[    0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000] Memory: 112712K/131072K available (7168K kernel code, 199K rwdat)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
[    0.000000]     vmalloc : 0xc8800000 - 0xff800000   ( 880 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xc8000000   ( 128 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .text : 0xc0008000 - 0xc0800000   (8160 kB)
[    0.000000]       .init : 0xc0a00000 - 0xc0b00000   (1024 kB)
[    0.000000]       .data : 0xc0b00000 - 0xc0b31f68   ( 200 kB)
[    0.000000]        .bss : 0xc0b383b8 - 0xc0b757c0   ( 246 kB)
[    0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  Tasks RCU enabled.
[    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000] FPGA IRQ chip 0 "interrupt-controller" @ c8804000, 32 irqs, pare6
[    0.000017] sched_clock: 24 bits at 390kHz, resolution 2560ns, wraps every 2s
[    0.000048] clocksource: oxnas_rps_clocksource_timer: mask: 0xffffff max_cycs
[    0.000064] timer_oxnas_rps: Registered clocksource rate 390625Hz
[    0.000089] timer_oxnas_rps: Registered clock event rate 6250000Hz prescaler0
[    0.000235] GIC: PPI13 is secure or misconfigured
[    0.000289] GIC: PPI13 is secure or misconfigured
[    0.000455] Console: colour dummy device 80x30
[    0.000501] Calibrating delay loop... 339.14 BogoMIPS (lpj=1695744)
[    0.050383] pid_max: default: 32768 minimum: 301
[    0.050657] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.050682] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.051576] CPU: Testing write buffer coherency: ok
[    0.090444] Setting up static identity map for 0x60100000 - 0x60100038
[    0.110343] Hierarchical SRCU implementation.
[    0.150351] smp: Bringing up secondary CPUs ...
[    0.220454] GIC: PPI13 is secure or misconfigured
[    0.280629] smp: Brought up 1 node, 2 CPUs
[    0.280660] SMP: Total of 2 processors activated (678.29 BogoMIPS).
[    0.281382] devtmpfs: initialized
[    0.287111] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, ms
[    0.287144] futex hash table entries: 512 (order: 2, 16384 bytes)
[    0.287477] prandom: seed boundary self test passed
[    0.291765] prandom: 100 self tests passed
[    0.291783] pinctrl core: initialized pinctrl subsystem
[    0.292474] NET: Registered protocol family 16
[    0.294087] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.296458] cpuidle: using governor ladder
[    0.296535] cpuidle: using governor menu
[    0.314163] vgaarb: loaded
[    0.314682] SCSI subsystem initialized
[    0.315371] usbcore: registered new interface driver usbfs
[    0.315481] usbcore: registered new interface driver hub
[    0.315624] usbcore: registered new device driver usb
[    0.315816] pps_core: LinuxPPS API ver. 1 registered
[    0.315832] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giom>
[    0.315865] PTP clock support registered
[    0.316940] clocksource: Switched to clocksource oxnas_rps_clocksource_timer
[    0.332538] NET: Registered protocol family 2
[    0.333427] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[    0.333470] TCP bind hash table entries: 1024 (order: 1, 8192 bytes)
[    0.333506] TCP: Hash tables configured (established 1024 bind 1024)
[    0.333670] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    0.333719] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    0.333977] NET: Registered protocol family 1
[    0.334776] RPC: Registered named UNIX socket transport module.
[    0.334799] RPC: Registered udp transport module.
[    0.334809] RPC: Registered tcp transport module.
[    0.334822] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.335196] Unpacking initramfs...
[    1.044331] Freeing initrd memory: 6316K
[    1.045516] Initialise system trusted keyrings
[    1.045585] Key type blacklist registered
[    1.045900] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[    1.053219] zbud: loaded
[    1.057896] NFS: Registering the id_resolver key type
[    1.057940] Key type id_resolver registered
[    1.057955] Key type id_legacy registered
[    1.057986] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    1.058001] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    1.058890] fuse init (API version 7.26)
[    1.059860] orangefs_debugfs_init: called with debug mask: :none: :0:
[    1.060129] orangefs_init: module version upstream loaded
[    3.042895] Key type asymmetric registered
[    3.042926] Asymmetric key parser 'x509' registered
[    3.043031] Block layer SCSI generic (bsg) driver version 0.4 loaded (major )
[    3.043048] io scheduler noop registered
[    3.043061] io scheduler deadline registered
[    3.043120] io scheduler cfq registered (default)
[    3.044710] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled
[    3.046133] console [ttyS0] disabled
[    3.046277] 44200000.serial: ttyS0 at MMIO 0x44200000 (irq = 55, base_baud =A
[    3.620848] console [ttyS0] enabled
[    3.634969] loop: module loaded
[    3.639971] scsi host0: sata_oxnas
[    3.643663] ata1: SATA max UDMA/133 irq 57
[    3.647902] sata_oxnas: resetting SATA core
[    3.717286] nand: Could not find valid ONFI parameter page; aborting
[    3.723627] nand: device found, Manufacturer ID: 0xad, Chip ID: 0xf1
[    3.730001] nand: Hynix NAND 128MiB 3,3V 8-bit
[    3.734433] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB si4
[    3.742010] Scanning device for bad blocks
[    3.754488] Bad eraseblock 104 at 0x000000d00000
[    3.823667] Bad eraseblock 910 at 0x0000071c0000
[    3.831383] Bad eraseblock 949 at 0x0000076a0000
[    3.841966] 2 ofpart partitions found on MTD device 41000000.nand-controller
[    3.849031] Creating 2 MTD partitions on "41000000.nand-controller":
[    3.855367] 0x000000000000-0x000000e00000 : "boot"
[    3.861734] 0x000000e00000-0x000008000000 : "data"
[    3.869565] libphy: Fixed MDIO Bus: probed
[    3.874040] oxnas-dwmac 40400000.ethernet: PTP uses main clock
[    3.879923] oxnas-dwmac 40400000.ethernet: no reset control found
[    3.947046] stmmac - user ID: 0x12, Synopsys ID: 0x35
[    3.952084] oxnas-dwmac 40400000.ethernet: Ring mode enabled
[    3.957775] oxnas-dwmac 40400000.ethernet: DMA HW capability register suppord
[    3.965048] oxnas-dwmac 40400000.ethernet: Enhanced/Alternate descriptors
[    3.971832] oxnas-dwmac 40400000.ethernet: Enabled extended descriptors
[    3.978447] oxnas-dwmac 40400000.ethernet: RX Checksum Offload Engine suppord
[    3.985725] oxnas-dwmac 40400000.ethernet: COE Type 2
[    3.990778] oxnas-dwmac 40400000.ethernet: TX Checksum insertion supported
[    3.997649] oxnas-dwmac 40400000.ethernet: Wake-Up On Lan supported
[    3.998832] ata1: SATA link down (SStatus 0 SControl 310)
[    4.003891] oxnas-dwmac 40400000.ethernet: Enable RX Mitigation via HW Watchr
[    4.060272] libphy: stmmac: probed
[    4.063680] mdio_bus stmmac-0:00: attached PHY driver [unbound] (mii_bus:phy)
[    4.073172] mdio_bus stmmac-0:03: attached PHY driver [unbound] (mii_bus:phy)
[    4.083563] PPP generic driver version 2.4.2
[    4.088238] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    4.094740] ehci-pci: EHCI PCI platform driver
[    4.307008] oxnas-ehci 40200100.ehci: EHCI Host Controller
[    4.312517] oxnas-ehci 40200100.ehci: new USB bus registered, assigned bus n1
[    4.320399] oxnas-ehci 40200100.ehci: irq 52, io mem 0x40200100
[    4.347013] oxnas-ehci 40200100.ehci: USB 2.0 started, EHCI 1.00
[    4.353318] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    4.360140] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber1
[    4.367365] usb usb1: Product: EHCI Host Controller
[    4.372221] usb usb1: Manufacturer: Linux 4.14.180-oxnas-tld-1 ehci_hcd
[    4.378839] usb usb1: SerialNumber: 40200100.ehci
[    4.384358] hub 1-0:1.0: USB hub found
[    4.388262] hub 1-0:1.0: 2 ports detected
[    4.393272] usbcore: registered new interface driver cdc_wdm
[    4.399111] usbcore: registered new interface driver usb-storage
[    4.405224] usbcore: registered new interface driver usbserial
[    4.411159] usbcore: registered new interface driver usbserial_generic
[    4.417771] usbserial: USB Serial support registered for generic
[    4.424061] mousedev: PS/2 mouse device common for all mice
[    4.429811] i2c /dev entries driver
[    4.434547] hidraw: raw HID events driver (C) Jiri Kosina
[    4.440168] usbcore: registered new interface driver usbhid
[    4.445719] usbhid: USB HID core driver
[    4.450900] NET: Registered protocol family 10
[    4.456806] Segment Routing with IPv6
[    4.460625] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    4.468280] NET: Registered protocol family 17
[    4.472826] Key type dns_resolver registered
[    4.478282] registered taskstats version 1
[    4.482365] Loading compiled-in X.509 certificates
[    4.487293] zswap: loaded using pool lzo/zbud
[    4.569221] Key type big_key registered
[    4.611033] Key type encrypted registered
[    4.617287] hctosys: unable to open rtc device (rtc0)
[    4.624299] Freeing unused kernel memory: 1024K
Loading, please wait...
[    4.757117] usb 1-1: new high-speed USB device number 2 using oxnas-ehci
starting version 232
[    4.852958] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    4.861731] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    4.869342] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    4.958947] usb 1-1: New USB device found, idVendor=05e3, idProduct=0608
[    4.965655] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    4.972966] usb 1-1: Product: USB2.0 Hub
[    4.978478] hub 1-1:1.0: USB hub found
[    4.982609] hub 1-1:1.0: 4 ports detected
[    5.307100] usb 1-1.3: new high-speed USB device number 3 using oxnas-ehci
[    5.477882] usb 1-1.3: New USB device found, idVendor=18a5, idProduct=0250
[    5.484769] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumbe3
[    5.492218] usb 1-1.3: Product: STORE N GO
[    5.496307] usb 1-1.3: Manufacturer: Verbatim
[    5.500774] usb 1-1.3: SerialNumber: 0719166AB28DE120
[    5.507438] usb-storage 1-1.3:1.0: USB Mass Storage device detected
[    5.527331] scsi host1: usb-storage 1-1.3:1.0
[    5.575851] usbcore: registered new interface driver uas
Begin: Loading essential drivers ... done.
[    6.568919] scsi 1:0:0:0: Direct-Access     Verbatim STORE N GO       PMAP P6
[    6.582622] sd 1:0:0:0: [sda] 30339072 512-byte logical blocks: (15.5 GB/14.)
[    6.591303] sd 1:0:0:0: [sda] Write Protect is off
[    6.597288] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doA
[    6.724810]  sda: sda1
[    6.731604] sd 1:0:0:0: [sda] Attached SCSI removable disk
[    6.792381] random: fast init done
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... done.
Begin: Will now check root file system ... fsck from util-linux 2.29.2
fsck: error 2 (No such file or directory) while executing fsck.ext3 for /dev/sd1
fsck exited with status code 8
done.
Warning: File system check failed but did not detect errors
[   20.862676] EXT4-fs (sda1): mounting ext3 file system using the ext4 subsystm
[   20.902522] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts:)
done.
Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... done.
INIT: version 2.93 booting
[info] Using makefile-style concurrent boot in runlevel S.
[....] Starting the hotplug events dispatcher: systemd-udevdstarting version 232
. ok
[ ok ] Synthesizing the initial hotplug events...done.
[ ok ] Waiting for /dev to be fully populated...done.
[ ok ] Activating swap...done.
[   25.296757] EXT4-fs (sda1): re-mounted. Opts: (null)
[....] Checking root file system...fsck from util-linux 2.29.2
rootfs: clean, 13945/948416 files, 203726/3792128 blocks
done.
[   25.609041] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[....] Checking file systems...fsck from util-linux 2.29.2
done.
[ ok ] Cleaning up temporary files... /tmp.
[ ok ] Loading kernel modules...done.
[ ok ] Mounting local filesystems...done.
[ ok ] Activating swapfile swap...done.
[   28.193600] random: crng init done
[   28.197063] random: 7 urandom warning(s) missed due to ratelimiting
[ ok ] Cleaning up temporary files....
[ ok ] Setting kernel variables...done.
[....] Configuring network interfaces...Internet Systems Consortium DHCP Client5
Copyright 2004-2016 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

[   29.230149] oxnas-dwmac 40400000.ethernet eth0: No phy led trigger registere)
[   29.238563] Generic PHY stmmac-0:00: attached PHY driver [Generic PHY] (mii_)
[   29.252610] oxnas-dwmac 40400000.ethernet eth0: IEEE 1588-2008 Advanced Timed
[   29.261370] oxnas-dwmac 40400000.ethernet eth0: registered PTP clock
[   29.268549] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Listening on LPF/eth0/52:3b:20:9c:11:51
Sending on   LPF/eth0/52:3b:20:9c:11:51
Sending on   Socket/fallback
DHCPREQUEST of xxx.xxx.xxx.xxx on eth0 to 255.255.255.255 port 67
[   30.327930] oxnas-dwmac 40400000.ethernet eth0: Link is Up - 1Gbps/Full - flx
[   30.336373] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
DHCPREQUEST of xxx.xxx.xxx.xxx on eth0 to 255.255.255.255 port 67
DHCPACK of xxx.xxx.xxx.xxx from yyy.yyy.yyy.yyy
bound to xxx.xxx.xxx.xxx -- renewal in 18176 seconds.
done.
[ ok ] Starting RPC port mapper daemon: rpcbind.
[ ok ] Starting NFS common utilities: statd idmapd.
[ ok ] Cleaning up temporary files....
INIT: Entering runlevel: 2
[info] Using makefile-style concurrent boot in runlevel 2.
[....] Starting busybox' syslogd implementation : syslogdStarting /sbin/syslogd.
1226 (syslogd)
. ok
[....] Starting busybox' klogd implementation : klogdStarting /sbin/klogd...
1253 (klogd)
. ok
[ ok ] Starting system message bus: dbus.
[ ok ] Starting Avahi mDNS/DNS-SD Daemon: avahi-daemon.
[ ok ] Starting NFS common utilities: statd idmapd.
[warn] Not starting NFS kernel daemon: no exports. ... (warning).
[ ok ] Starting NTP server: ntpd.
[ ok ] Starting OpenBSD Secure Shell server: sshd.

Debian GNU/Linux 10 debian ttyS0

debian login: root
Password:
Last login: Wed Dec 31 16:01:43 PST 1969 on ttyS0
Linux debian 4.14.180-oxnas-tld-1 #1 SMP PREEMPT Wed May 13 02:38:34 PDT 2020 al

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
root@debian:~# uname -a
Linux debian 4.14.180-oxnas-tld-1 #1 SMP PREEMPT Wed May 13 02:38:34 PDT 2020 ax
root@debian:~# halt

Broadcast message from root@debian (ttyS0) (Wed Dec 31 16:01:33 1969):

The system is going down for system halt NOW!
INIT: root@debian:~[info] Using makefile-style concurrent boot in runlevel 0.
[ ok ] Stopping Avahi mDNS/DNS-SD Daemon: avahi-daemon.
[....] Stopping busybox' klogd implementation: klogd1253 (klogd)
Stopped klogd (pid 1253).
. ok
[....] Stopping busybox' syslogd implementation: syslogd1226 (syslogd)
. ok
[ ok ] Stopping NFS kernel daemon: mountd nfsd.
[ ok ] Unexporting directories for NFS kernel daemon....
[ ok ] Asking all remaining processes to terminate...done.
[ ok ] All processes ended within 1 seconds...done.
[ ok ] Stopping NFS common utilities: idmapd statd.
[ ok ] Stopping RPC port mapper daemon: rpcbind.
[....] Deconfiguring network interfaces...Removed stale PID file
Internet Systems Consortium DHCP Client 4.3.5
Copyright 2004-2016 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/eth0/52:3b:20:9c:11:51
Sending on   LPF/eth0/52:3b:20:9c:11:51
Sending on   Socket/fallback
DHCPRELEASE on eth0 to yyy.yyy.yyy.yyy port 67
done.
[ ok ] Unmounting temporary filesystems...done.
[ ok ] Deactivating swap...done.
[   97.420413] EXT4-fs (sda1): re-mounted. Opts: (null)
/etc/init.d/halt: 62: /etc/init.d/halt: /sbin/dhcpcd-bin: not found
[info] Will now halt.
[   97.578017] reboot: System halted

Add a comment

HTML code is displayed as text and web addresses are automatically converted.

They posted on the same topic

Trackback URL : https://www.pseudomoon.jp/dotclear/index.php?trackback/169

This post's comments feed