martedì, 28 ottobre 2025, 17:42 UTC+1
Non risulti loggato.
Gentile visitatore,
Benvenuto su NAS Forum. Se questa è la tua prima visita, ti chiediamo di leggere la sezione Aiuto. Questa guida ti spiegherà il funzionamento di questa pagina. Prima di poter utilizzare tutte le funzioni di questo software dovrai registrarti. Usa la form di registrazione per registrarti adesso, oppure visualizza maggiori informazioni sul processo di registrazione. Se sei già un utente registrato, allora dovrai solamente procedere con il login da qui.
|
|
Codice sorgente |
1 2 3 4 5 6 7 |
define Device/raidsonic_ib-4210-b $(Device/storlink-reference) DEVICE_VENDOR := Raidsonic DEVICE_MODEL := NAS IB-4210-B DEVICE_DTS := gemini-nas4210b endef TARGET_DEVICES += raidsonic_ib-4210-b |
|
|
Codice sorgente |
1 2 3 4 5 6 7 8 9 |
[ 4.689742] 7 RedBoot partitions found on MTD device 30000000.flash [ 4.757069] Creating 7 MTD partitions on "30000000.flash": [ 4.845257] 0x000000000000-0x000000020000 : "BOOT" [ 4.886683] 0x000000020000-0x000000220000 : "Kern" [ 4.957432] 0x000000320000-0x0000003d92cd : "Ramdisk" [ 5.037796] 0x000000920000-0x000000f20000 : "Application" [ 5.087129] 0x000000f20000-0x000000f40000 : "VCTL" [ 5.127570] 0x000000f40000-0x000000fe0000 : "CurConf" [ 5.176821] 0x000000fe0000-0x000001000000 : "FIS directory" |
|
|
Codice sorgente |
1 2 3 4 5 6 7 |
#Default Layout Danelec myditto: #Name FLASH addr Mem addr Datalen Entry point #BOOT 0x30000000-3001FFFF 0x00000000 0x00020000 0x00000000 #FIS directory 0x307E0000-307FFFFF 0x307E0000 0x00001400 0x00000000 #Kern 0x30020000-3071FFFF 0x00800000 0x00700000 0x00800014 #CurConf 0x30740000-3075FFFF 0x00000000 0x00020000 0x00000000 #VCTL 0x30720000-3073FFFF 0x00000000 0x00020000 0x00000000 |
Questo post è stato modificato 1 volta(e), ultima modifica di "hendi060" (27/04/2021, 19:39)
|
|
Codice sorgente |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
[ 4.643675] of-flash 30000000.flash: initialized Gemini-specific physmap control [ 4.688220] 30000000.flash: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x000001 Chip ID 0x002101 [ 4.749261] Amd/Fujitsu Extended Query Table at 0x0040 [ 4.780211] Amd/Fujitsu Extended Query version 1.3. [ 4.810546] number of CFI chips: 1 [ 4.832623] 9 fixed-partitions partitions found on MTD device 30000000.flash [ 4.875064] Creating 9 MTD partitions on "30000000.flash": [ 4.908117] 0x000000000000-0x000000020000 : "RedBoot" [ 4.943509] 0x000000020000-0x000000320000 : "Kernel" [ 4.978906] 0x000000320000-0x000000920000 : "Ramdisk" [ 5.015124] 0x000000920000-0x000000f20000 : "Application" [ 5.053883] 0x000000f20000-0x000000f40000 : "VCTL" [ 5.088507] 0x000000f40000-0x000000fe0000 : "CurConf" [ 5.124837] 0x000000fe0000-0x000001000000 : "FIS directory" [ 5.164787] 0x000000020000-0x000000f20000 : "firmware" [ 5.202466] 0x000000320000-0x000000f20000 : "rootfs" [ 5.237494] mtd: device 8 (rootfs) set to be root filesystem [ 5.272959] 1 squashfs-split partitions found on MTD device rootfs [ 5.310424] 0x000000740000-0x000000f20000 : "rootfs_data" |
|
|
Codice sorgente |
1 2 |
bootargs = "console=ttyS0,19200n8 root=/dev/mtdblock2 rw rootfstype=squashfs,jffs2 rootwait noinitrd init=/etc/preinit"; stdout-path = &uart0; |
|
|
Codice sorgente |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
partition@0 {
label = "RedBoot";
reg = <0x00000000 0x00020000>;
read-only;
};
partition@20000 {
label = "Kernel";
reg = <0x00020000 0x00280000>;
};
partition@280000 {
label = "rootfs";
reg = <0x002A0000 0x00480000>;
};
partition@720000 {
label = "VCTL";
reg = <0x00720000 0x00020000>;
read-only;
};
partition@740000 {
label = "CurConf";
reg = <0x00740000 0x00020000>;
read-only;
};
partition@7E0000 {
label = "FIS directory";
reg = <0x007E000 0x00001400>;
read-only;
};
|
Questo post è stato modificato 1 volta(e), ultima modifica di "hendi060" (29/05/2021, 13:03)
Questo post è stato modificato 5 volta(e), ultima modifica di "Lantizia" (25/11/2021, 08:39)