Tuesday, October 28th 2025, 10:16am UTC+1
You are not logged in.
Dear visitor, welcome to NAS Forum. If this is your first visit here, please read the Help. It explains how this page works. You must be registered before you can use all the page's features. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
|
|
Source code |
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 |
|
|
Source code |
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" |
|
|
Source code |
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 |
This post has been edited 1 times, last edit by "hendi060" (Apr 27th 2021, 7:39pm)
|
|
Source code |
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" |
|
|
Source code |
1 2 |
bootargs = "console=ttyS0,19200n8 root=/dev/mtdblock2 rw rootfstype=squashfs,jffs2 rootwait noinitrd init=/etc/preinit"; stdout-path = &uart0; |
|
|
Source code |
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;
};
|
This post has been edited 1 times, last edit by "hendi060" (May 29th 2021, 1:03pm)
This post has been edited 5 times, last edit by "Lantizia" (Nov 25th 2021, 8:39am)