|
Re: LG N1T1 NAS March 12, 2018 03:41AM |
Registered: 8 years ago Posts: 58 |
cd /boot wget https://bitly.com/2EksnWU mv 2EksnWU linux-4.15.2-kirkwood-tld-1-bodhi.tar.bz2
cd /boot mkdir backup/2018-03-12 cp uInitrd backup/2018-03-12 cp uImage backup/2018-03-12 cp initrd.img-4.12.1-kirkwood-tld-1 backup/2018-03-12 cp System.map-4.12.1-kirkwood-tld-1 backup/2018-03-12 cp vmlinuz-4.12.1-kirkwood-tld-1 backup/2018-03-12 cp config-4.12.1-kirkwood-tld-1 backup/2018-03-12 cp dts/ backup/2018-03-12/dts -r
cd /boot tar -xjf linux-4.15.2-kirkwood-tld-1-bodhi.tar.bz2 tar -xf linux-dtb-4.15.2-kirkwood-tld-1.tar
cd /boot apt-get remove flash-kernel dpkg -i linux-image-4.15.2-kirkwood-tld-1_1.0_armel.deb
Selecting previously unselected package linux-image-4.15.2-kirkwood-tld-1. (Reading database ... 20395 files and directories currently installed.) Preparing to unpack linux-image-4.15.2-kirkwood-tld-1_1.0_armel.deb ... Examining /etc/kernel/preinst.d/ Done. Unpacking linux-image-4.15.2-kirkwood-tld-1 (1.0) ... Setting up linux-image-4.15.2-kirkwood-tld-1 (1.0) ... Hmm. There is a symbolic link /lib/modules/4.15.2-kirkwood-tld-1/build However, I can not read it: No such file or directory Therefore, I am deleting /lib/modules/4.15.2-kirkwood-tld-1/build Hmm. The package shipped with a symbolic link /lib/modules/4.15.2-kirkwood-tld-1/source However, I can not read the target: No such file or directory Therefore, I am deleting /lib/modules/4.15.2-kirkwood-tld-1/source Running depmod. Examining /etc/kernel/postinst.d. run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.15.2-kirkwood-tld-1 /boot/vmlinuz-4.15.2-kirkwood-tld-1 run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.15.2-kirkwood-tld-1 /boot/vmlinuz-4.15.2-kirkwood-tld-1 update-initramfs: Generating /boot/initrd.img-4.15.2-kirkwood-tld-1 I: The initramfs will attempt to resume from /dev/sda2 I: (UUID=b6c69d1f-25f0-4963-91fb-d7b2c85455cc) I: Set the RESUME variable to override this. run-parts: executing /etc/kernel/postinst.d/zz-flash-kernel 4.15.2-kirkwood-tld-1 /boot/vmlinuz-4.15.2-kirkwood-tld-1
cd /boot mv uImage uImage.orig cp -a zImage-4.15.2-kirkwood-tld-1 zImage.fdt cat dts/kirkwood-goflexnet.dtb >> zImage.fdt mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-4.15.2-kirkwood-tld-1 -d zImage.fdt uImage
Image Name: Linux-4.15.2-kirkwood-tld-1 Created: Mon Mar 12 08:59:09 2018 Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 3937421 Bytes = 3845.14 kB = 3.76 MB Load Address: 00008000 Entry Point: 00008000
mkimage -A arm -O linux -T ramdisk -C gzip -a 0x00000000 -e 0x00000000 -n initramfs-4.15.2-kirkwood-tld-1 -d initrd.img-4.15.2-kirkwood-tld-1 uInitrd
Image Name: initramfs-4.15.2-kirkwood-tld-1 Created: Mon Mar 12 09:00:09 2018 Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 7872767 Bytes = 7688.25 kB = 7.51 MB Load Address: 00000000 Entry Point: 00000000
sync sync sync shutdown -r now
|
Re: LG N1T1 NAS March 12, 2018 02:58PM |
Admin Registered: 15 years ago Posts: 20,074 |
|
Re: LG N1T1 NAS March 13, 2018 03:52AM |
Registered: 8 years ago Posts: 58 |
su -
mount /dev/sda1 /mnt/start cd /mnt/start/boot
cat dts/kirkwood-n1t1.dtb >> zImage.fdt
shutdown -r now
su - mount /dev/sda1 /mnt/start cd /mnt/start/boot cp backup/2018-03-12/uInitrd . cp backup/2018-03-12/uImage . cp backup/2018-03-12/initrd.img-4.12.1-kirkwood-tld-1 . cp backup/2018-03-12/System.map-4.12.1-kirkwood-tld-1 . cp backup/2018-03-12/vmlinuz-4.12.1-kirkwood-tld-1 . cp backup/2018-03-12/config-4.12.1-kirkwood-tld-1 . cp backup/2018-03-12/dts dts/ -r sync
|
Re: LG N1T1 NAS March 13, 2018 04:43PM |
Admin Registered: 15 years ago Posts: 20,074 |
cd /boot cp -a uImage uInitrd ./backup/2018-03-12/ mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-4.15.2-kirkwood-tld-1 -d vmlinuz-4.15.2-kirkwood-tld-1 uImage mkimage -A arm -O linux -T ramdisk -C gzip -a 0x00000000 -e 0x00000000 -n initramfs-4.15.2-kirkwood-tld-1 -d initrd.img-4.15.2-kirkwood-tld-1 uInitrd
mount /dev/sda1 /mnt/start cd /mnt/start/boot ls -lart * ls -larth *
|
Re: LG N1T1 NAS March 14, 2018 03:26AM |
Registered: 8 years ago Posts: 58 |
cd /boot cp -a uImage uInitrd ./backup/2018-03-12/
mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-4.15.2-kirkwood-tld-1 -d vmlinuz-4.15.2-kirkwood-tld-1 uImage
Image Name: Linux-4.15.2-kirkwood-tld-1 Created: Wed Mar 14 08:25:23 2018 Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 3925976 Bytes = 3833.96 kB = 3.74 MB Load Address: 00008000 Entry Point: 00008000
mkimage -A arm -O linux -T ramdisk -C gzip -a 0x00000000 -e 0x00000000 -n initramfs-4.15.2-kirkwood-tld-1 -d initrd.img-4.15.2-kirkwood-tld-1 uInitrd
Image Name: initramfs-4.15.2-kirkwood-tld-1 Created: Wed Mar 14 08:26:03 2018 Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 7872767 Bytes = 7688.25 kB = 7.51 MB Load Address: 00000000 Entry Point: 00000000
sync sync sync shutdown -r now
Starting kernel ... Uncompressing Linux... done, booting the kernel. Error: invalid dtb and unrecognized/unsupported machine ID r1=0x00000691, r2=0x00000100 r2[]=05 00 00 00 01 00 41 54 00 00 00 00 00 00 00 00 Available machine support: ID (hex) NAME ffffffff Generic DT based system ffffffff Marvell Kirkwood (Flattened Device Tree) Please check your kernel config and/or bootloader.
mount /dev/sda1 /mnt/start cd /mnt/start/boot ls -lart *
ls -larth *
mkdir backup/2018-03-14 mv uImage ./backup/2018-03-14/uImage.4.15.2-DTB-file-embedded mv uInitrd ./backup/2018-03-14/uInitrd.4.15.2 cp -a ./backup/2018-03-12/uImage . cp -a ./backup/2018-03-12/uInitrd . sync sync sync shutdown -r now
su - cd /boot mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-4.15.2-kirkwood-tld-1 -d zImage.fdt uImage
Image Name: Linux-4.15.2-kirkwood-tld-1 Created: Wed Mar 14 09:01:55 2018 Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 3949301 Bytes = 3856.74 kB = 3.77 MB Load Address: 00008000 Entry Point: 00008000
mkimage -A arm -O linux -T ramdisk -C gzip -a 0x00000000 -e 0x00000000 -n initramfs-4.15.2-kirkwood-tld-1 -d initrd.img-4.15.2-kirkwood-tld-1 uInitrd
Image Name: initramfs-4.15.2-kirkwood-tld-1 Created: Wed Mar 14 09:02:56 2018 Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 7872767 Bytes = 7688.25 kB = 7.51 MB Load Address: 00000000 Entry Point: 00000000
sync sync sync shutdown -r now
su - mount /dev/sda1 /mnt/start cd /mnt/start/boot ls -lart *
ls -larth *
mv uImage ./backup/2018-03-14/uImage.4.15.2-DTB-file mv uInitrd ./backup/2018-03-14/uInitrd.4.15.2.OneMore cp -a ./backup/2018-03-12/uImage . cp -a ./backup/2018-03-12/uInitrd . sync sync sync shutdown -r now
|
Re: LG N1T1 NAS March 14, 2018 07:12AM |
Admin Registered: 15 years ago Posts: 20,074 |
Quote
I try "Boot with DTB file" as you suggest in the post
|
Re: LG N1T1 NAS August 14, 2018 08:55AM |
Registered: 7 years ago Posts: 6 |
_sudZUZ#Z#XZo=_ Hostname: debian
_jmZZ2!!~---~!!X##wx OS: Debian 9.5 armv5tel
.<wdP~~ -!YZL, Kernel: 4.17.2-kirkwood-tld-1
.mX2' _xaaa__ XZ[. Uptime: 1:06
oZ[ _jdXY!~?S#wa ]Xb; Shell: Bash
_#e' .]X2( ~Xw| )XXc Terminal: Xterm-256color
.2Z` ]X[. xY| ]oZ( Packages: 309
.2#; )3k; _s!~ jXf` CPU: CPU implementer : 0x56
1Z> -]Xb/ ~ __#2( RAM: -148 MB / 114 MB
-Zo; +!4ZwerfgnZZXY' Disk: 944M / 7.4G
*#[, ~-?!!!!!!-~
XUb;.
)YXL,,
+3#bc,
-)SSL,,
~~~~~
|
Re: LG N1T1 NAS August 14, 2018 12:49PM |
Admin Registered: 15 years ago Posts: 20,074 |
cat /etc/fw_env.config fw_printenv
|
Re: LG N1T1 NAS August 14, 2018 06:50PM |
Registered: 7 years ago Posts: 6 |
root@debian:~# cat /etc/fw_env.config
# MTD device name Device offset Env. size Flash sector size Number of sectors
/dev/mtd0 0xc0000 0x20000 0x20000
root@debian:~# fw_printenv
Warning: Bad CRC, using default environment
bootargs=
bootcmd=
bootdelay=2
baudrate=115200
arch=sandbox
cpu=sandbox
board=sandbox
board_name=sandbox
stdin=serial,cros-ec-keyb,usbkbd
stdout=serial,vidconsole
stderr=serial,vidconsole
ethaddr=00:00:11:22:33:44
eth1addr=00:00:11:22:33:45
eth3addr=00:00:11:22:33:46
eth5addr=00:00:11:22:33:47
ipaddr=1.2.3.4
host_boot=if host dev ${devnum}; then setenv devtype host; run scan_dev_for_boot_part; fi
boot_net_pci_enum=pci enum
boot_net_usb_start=usb start
usb_boot=usb start; if usb dev ${devnum}; then setenv devtype usb; run scan_dev_for_boot_part; fi
boot_prefixes=/ /boot/
boot_scripts=boot.scr.uimg boot.scr
boot_script_dhcp=boot.scr.uimg
boot_targets=host1 host0
boot_extlinux=sysboot ${devtype} ${devnum}:${distro_bootpart} any ${scriptaddr} ${prefix}extlinux/extlinux.conf
scan_dev_for_extlinux=if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}extlinux/extlinux.conf; then echo Found ${prefix}extlinux/extlinux.conf; run boot_extlinux; echo SCRIPT FAILED: continuing...; fi
boot_a_script=load ${devtype} ${devnum}:${distro_bootpart} ${scriptaddr} ${prefix}${script}; source ${scriptaddr}
scan_dev_for_scripts=for script in ${boot_scripts}; do if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}${script}; then echo Found U-Boot script ${prefix}${script}; run boot_a_script; echo SCRIPT FAILED: continuing...; fi; done
scan_dev_for_boot=echo Scanning ${devtype} ${devnum}:${distro_bootpart}...; for prefix in ${boot_prefixes}; do run scan_dev_for_extlinux; run scan_dev_for_scripts; done;
scan_dev_for_boot_part=part list ${devtype} ${devnum} -bootable devplist; env exists devplist || setenv devplist 1; for distro_bootpart in ${devplist}; do if fstype ${devtype} ${devnum}:${distro_bootpart} bootfstype; then run scan_dev_for_boot; fi; done
bootcmd_host1=setenv devnum 1; run host_boot
bootcmd_host0=setenv devnum 0; run host_boot
distro_bootcmd=for target in ${boot_targets}; do run bootcmd_${target}; done
bootm_size=0x10000000
kernel_addr_r=0x1000000
fdt_addr_r=0xc00000
ramdisk_addr_r=0x2000000
scriptaddr=0x1000
pxefile_addr_r=0x2000
|
Re: LG N1T1 NAS August 15, 2018 12:34AM |
Admin Registered: 15 years ago Posts: 20,074 |
printenv boot
|
Re: LG N1T1 NAS August 15, 2018 05:21AM |
Registered: 7 years ago Posts: 6 |
|
Re: LG N1T1 NAS August 15, 2018 07:02AM |
Admin Registered: 15 years ago Posts: 20,074 |
Quote
Just wanted to say thankyou! I now have Debian 9.5 on my n1t1
Quote
Currently i am booting via serial each time the device starts
|
Re: LG N1T1 NAS August 15, 2018 09:05AM |
Registered: 7 years ago Posts: 6 |
þNormal mode boot start!
_ _ ____ _
| | | | | __ ) ___ ___ | |_
| | | |___| _ \ / _ \ / _ \| __|
| |_| |___| |_) | (_) | (_) | |_
\___/ |____/ \___/ \___/ \__| ** LOADER **
** LGE-NAS BOARD: NT1 LE
U-Boot 1.1.4 (May 21 2011 - 03:56:55)NT1
U-Boot code: 00600000 -> 0067FFF0 BSS: -> 006CDEE0
Soc: 88F6281 A1 (DDR2)
CPU running @ 1000Mhz L2 running @ 333Mhz
SysClock = 333Mhz , TClock = 200Mhz
DRAM CAS Latency = 5 tRP = 5 tRAS = 15 tRCD=5
DRAM CS[0] base 0x00000000 size 128MB
DRAM Total size 128MB 16bit width
[512kB@f8000000] Flash: 512 kB
Addresses 8M - 0M are saved for the U-Boot usage.
Mem malloc Initialization (8M - 7M): Done
CPU : Marvell Feroceon (Rev 1)
Streaming disabled
Write allocate disabled
USB 0: host mode
PEX 0: interface detected no Link.
Net: egiga0 [PRIME]
Normal mode : lg_bootmode = 0
Hit any key to stop autoboot: 1 0
LGE-NAS>> setenv bootargs 'console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=spi_flash:0x78000@0(uboot),0x1000@0x78000(env) earlyprintk=serial'
LGE-NAS>> setenv mainlineLinux yes
LGE-NAS>> usb start
(Re)start USB...
USB: scanning bus for devices... 2 USB Device(s) found
scanning bus for storage devices... 1 Storage Device(s) found
LGE-NAS>> mw 0x800000 0 1
LGE-NAS>> ext2load usb 0:1 0x800000 /boot/uImage
.
.
....
.
......
............
.........................
...................................................
......................................................................................................
......................................................................................................................................................................................................
4127376 bytes read
LGE-NAS>> ext2load usb 0:1 0x2100000 /boot/uInitrd
.
.
....
.
......
............
.........................
...................................................
......................................................................................................
............................................................................................................................................................................................................
....
......................................................................................................................................................................................................................................................................................................................................................................................
8082006 bytes read
LGE-NAS>> bootm 0x800000 0x2100000
## Booting image at 00800000 ..., header_size = 00000040, header_addr = 0068dcdc
image_header_t hdr contents
hdr->ih_magic = 56190527, hdr->ih_hcrc = e20888ee
hdr->ih_time = 2c61705b, hdr->ih_size = 003efa50
hdr->ih_load = 00800000, hdr->ih_ep = 00800000
hdr->ih_dcrc = 0ff3df8b
hdr->ih_os = 05, hdr->ih_arch = 02
hdr->ih_type = 02, hdr->ih_comp = 00
hdr->ih_name = Linux-4.17.2-kirkwood-tld-1
Image Name: Linux-4.17.2-kirkwood-tld-1
Created: 2018-08-12 16:32:44 UTC
Image Type: ARM Linux Kernel Image (uncompressed)
Data Size: 4127312 Bytes = 3.9 MB
Load Address: 00008000
Entry Point: 00008000
Verifying Checksum ... OK
OK
## Loading Ramdisk Image at 02100000, header_addr = 0068dcdc, header_size = 00000040 ...
RAMdisk image_header_t hdr contents
hdr->ih_magic = 56190527, hdr->ih_hcrc = df423592
hdr->ih_time = 3961705b, hdr->ih_size = 007b5216
hdr->ih_load = 00000000, hdr->ih_ep = 00000000
hdr->ih_dcrc = 4652fea5
hdr->ih_os = 05, hdr->ih_arch = 02
hdr->ih_type = 03, hdr->ih_comp = 01
hdr->ih_name = initramfs-4.17.2-kirkwood-tld-1
Image Name: initramfs-4.17.2-kirkwood-tld-1
Created: 2018-08-12 16:32:57 UTC
Image Type: ARM Linux RAMDisk Image (gzip compressed)
Data Size: 8081942 Bytes = 7.7 MB
Load Address: 00000000
Entry Point: 00000000
Verifying Checksum ... OK
Starting kernel ...
Uncompressing Linux... done, booting the kernel.
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 4.17.2-kirkwood-tld-1 (root@tldDebian) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1)) #1 PREEMPT Sun Jun 17 23:16:03 PDT 2018
[ 0.000000] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f
[ 0.000000] CPU: VIVT data cache, VIVT instruction cache
[ 0.000000] OF: fdt: Machine model: LG N1T1
[ 0.000000] bootconsole [earlycon0] enabled
[ 0.000000] Memory policy: Data cache writeback
[ 0.000000] random: get_random_bytes called from start_kernel+0x78/0x4ec with crng_init=0
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 32512
[ 0.000000] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=spi_flash:0x78000@0(uboot),0x1000@0x78000(env) earlyprintk=serial
[ 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: 108556K/131072K available (8192K kernel code, 803K rwdata, 2124K rodata, 1024K init, 278K bss, 22516K reserved, 0K cma-reserved)
[ 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 : 0x(ptrval) - 0x(ptrval) (9184 kB)
[ 0.000000] .init : 0x(ptrval) - 0x(ptrval) (1024 kB)
[ 0.000000] .data : 0x(ptrval) - 0x(ptrval) ( 804 kB)
[ 0.000000] .bss : 0x(ptrval) - 0x(ptrval) ( 279 kB)
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] Tasks RCU enabled.
[ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[ 0.000000] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
|
Re: LG N1T1 NAS August 15, 2018 11:41PM |
Admin Registered: 15 years ago Posts: 20,074 |
|
Re: LG N1T1 NAS August 16, 2018 12:12AM |
Admin Registered: 15 years ago Posts: 20,074 |
setenv bootargs_usb 'console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=spi_flash:0x78000@0(uboot),0x1000@0x78000(env) earlyprintk=serial' setenv bootcmd_usb 'setenv mainlineLinux yes; usb start; mw 0x800000 0 1; ext2load usb 0:1 0x800000 /boot/uImage; ext2load usb 0:1 0x2100000 /boot/uInitrd; bootm 0x800000 0x2100000' setenv bootcmd 'run bootargs_usb; run bootcmd_usb; run bootcmd_hdd'
|
Re: LG N1T1 NAS August 16, 2018 03:14PM |
Registered: 7 years ago Posts: 6 |
> setenv bootargs_usb 'console=ttyS0,115200 > root=LABEL=rootfs rootdelay=10 > mtdparts=spi_flash:0x78000@0(uboot),0x1000@0x78000(env) > earlyprintk=serial' > > setenv bootcmd_usb 'setenv mainlineLinux yes; usb > start; mw 0x800000 0 1; ext2load usb 0:1 0x800000 > /boot/uImage; ext2load usb 0:1 0x2100000 > /boot/uInitrd; bootm 0x800000 0x2100000' > > setenv bootcmd 'run bootargs_usb; run bootcmd_usb; > run bootcmd_hdd' >>
|
Re: LG N1T1 NAS August 17, 2018 12:31AM |
Admin Registered: 15 years ago Posts: 20,074 |
setenv bootargs_usb 'console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=spi_flash:0x78000@0(uboot),0x1000@0x78000(env) earlyprintk=serial' setenv load_image_usb 'ext2load usb 0:1 0x800000 /boot/uImage' setenv load_initrd_usb 'ext2load usb 0:1 0x2100000 /boot/uInitrd' setenv bootcmd_usb 'setenv mainlineLinux yes; usb start; mw 0x800000 0 1; run load_image_usb; run load_initrd_usb; bootm 0x800000 0x2100000' setenv bootcmd 'run bootargs_usb; run bootcmd_usb; run bootcmd_hdd'
|
Re: LG N1T1 NAS August 17, 2018 12:09PM |
Registered: 7 years ago Posts: 6 |
Hit any key to stop autoboot: 0 LGE-NAS>> setenv bootargs_usb 'console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=spi_flash:0x78000@0(uboot),0x1000@0x78000(env) earlyprintk=serial' LGE-NAS>> LGE-NAS>> setenv load_ima0/boot/uImage' LGE-NAS>> LGE-NAS>> setenv load_ini0rd' LGE-NAS>> LGE-NAS>> setenv bootcmd_s00000 0 1; run load_image_usb; run load_initrd_usb; bootm 0x800000 0x2100000' ## Error: "load_image_usb" not defined ## Error: "load_initrd_usb" not defined ## Booting image at 00800000 ..., header_size = 00000040, header_addr = 0068dcdc Bad Magic Number LGE-NAS>> LGE-NAS>> setenv bootcmd LGE-NAS>>
|
Re: LG N1T1 NAS August 18, 2018 02:48AM |
Registered: 11 years ago Posts: 488 |
|
Re: LG N1T1 NAS August 18, 2018 06:56AM |
Admin Registered: 15 years ago Posts: 20,074 |
|
Roca
Help!!! LG N1A1 NAS May 10, 2019 10:59PM |
|
Re: Help!!! LG N1A1 NAS May 10, 2019 11:30PM |
Admin Registered: 15 years ago Posts: 20,074 |
Quote
Serial Console & JTAG console
Repair Pogo E02 with Raspberry PI (JTAG) and OpenOCD
Serial Port connector - what are people using to make it work
Serial Console hookup - GoFlex Net (external link)
Serial Console hookup - Pogoplug E02 and Pogoplug Pro V3 (external link)
OSX Serial/Net Console
Use Phone Jack - Phone Jack Serial Console Pics
Adding serial connector to Pogoplug Mobile (external link)
WD Mycloud EX2100/4100 Serial Console pic1, also pic2, pic3
Dreamplug Serial Console
How to unbrick your box using serial console with kwboot
kwboot on Mac OSX 10
Unbrick a Pogoplug Pro v3 OXNAS by flashing u-boot in serial console
|
Roca
Re: Help!!! LG N1A1 NAS May 11, 2019 02:00AM |
|
Re: Help!!! LG N1A1 NAS May 11, 2019 03:08AM |
Admin Registered: 15 years ago Posts: 20,074 |
|
Re: LG N1T1 NAS October 07, 2020 12:50PM |
Registered: 5 years ago Posts: 13 |
|
Re: LG N1T1 NAS October 07, 2020 09:16PM |
Admin Registered: 15 years ago Posts: 20,074 |
|
Re: LG N1T1 NAS October 08, 2020 02:35AM |
Registered: 5 years ago Posts: 13 |
|
Re: LG N1T1 NAS October 08, 2020 05:26PM |
Admin Registered: 15 years ago Posts: 20,074 |
Quote
Backup and Cloning rootfs
CrashPlan 4.3.0
Backup/Restore rootfs using tar command
Adjust udev rules after cloning rootfs
Stock Pogoplug rootfs
How to clone a rootfs from one Kirkwood box to another: Step 1 and Step 2
How to clone SATA rootfs to USB rootfs
|
Re: LG N1T1 NAS October 09, 2020 05:58AM |
Registered: 5 years ago Posts: 13 |
|
Re: LG N1T1 NAS October 09, 2020 01:14PM |
Admin Registered: 15 years ago Posts: 20,074 |