嵌入式 linux 内核加载和文件系统

时间:2021-03-22 18:45:54
有一个设备 内嵌的linux系统 我想对系统进行一下改造 但是我每次我在系统做了修改之后重启 系统的修改就不见了 系统自动就还原了 有网友说这事由于我这个文件系统是ramdisk的 但是我查看挂载 发现好像只有home目录是ramds的
# mount
rootfs on / type rootfs (rw)
/dev/root on / type ext2 (rw,relatime)
proc on /proc type proc (rw,relatime)
sysfs on /sys type sysfs (rw,relatime)
ramfs on /home type ramfs (rw,relatime)
udev on /dev type tmpfs (rw,relatime)
devpts on /dev/pts type devpts (rw,relatime,mode=600)
/dev/ubi1_0 on /dav type ubifs (rw,relatime)
/dev/ubi3_0 on /davinci type ubifs (rw,relatime)
/dev/ubi4_0 on /config type ubifs (rw,relatime)
# df -h
Filesystem                Size      Used Available Use% Mounted on
rootfs                    7.9M      7.0M    887.0K  89% /
/dev/root                 7.9M      7.0M    887.0K  89% /
udev                     46.6M     76.0K     46.5M   0% /dev
/dev/ubi1_0              19.7M      8.2M     10.5M  44% /dav
/dev/ubi3_0               1.3M     68.0K      1.1M   6% /davinci
/dev/ubi4_0               1.3M     48.0K      1.1M   4% /config
可能我对这些挂载信息认识的不一定准确 但是我想请教 我想对我这个设备做一些改动 先如何才能做到修改不被还原 或者说 如何能找到被挂载到ram的文件 新手想高手前辈请教 问题已经困扰一周了 实在没办法才在这里打搅大家 望会的朋友好心帮我个忙 在这里先谢过了 
下面是dmsey的信息


# dmesg
[    0.000000] Linux version 2.6.38.8 (baigaoping@ipcteam2) (gcc version 4.6.1 (Sourcery CodeBench Lite 2011.09-70) ) 
[    0.000000] #358 PREEMPT Mon Sep 2 15:03:44 CST 2013
[    0.000000] CPU: ARMv6-compatible processor [4117b365] revision 5 (ARMv6TEJ), cr=00c5387f
[    0.000000] CPU: VIPT nonaliasing data cache, VIPT nonaliasing instruction cache
[    0.000000] Machine: Coconut
[    0.000000] Memory policy: ECC disabled, Data cache writeback
[    0.000000] Ambarella: AHB   = 0x60000000[0xf0000000],0x01000000 0
[    0.000000] Ambarella: APB   = 0x70000000[0xf1000000],0x01000000 0
[    0.000000] Ambarella: PPM   = 0xc0000000[0xe0000000],0x00200000 9
[    0.000000] Ambarella: BSB   = 0xc8c00000[0xe8c00000],0x00400000 9
[    0.000000] Ambarella: DSP   = 0xc9000000[0xe9000000],0x07000000 9
[    0.000000] Ambarella: HAL   = 0xc00a0000[0xfee00000],0x0000e708 9
[    0.000000] On node 0 totalpages: 25344
[    0.000000] free_area_init_node: node 0, pgdat c04dcf88, node_mem_map c0503000
[    0.000000]   Normal zone: 198 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 25146 pages, LIFO batch:7
[    0.000000] bootmem_init: high_memory = 0xc8a00000
[    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: 25146
[    0.000000] Kernel command line: console=ttyS0 initrd=0xc0a00000,0x400000 rw root=/dev/ram dbg=0 KRN_PRT=pri RMD_PRT=pri reserved=0xc6500000,0x100000,99 video=amb0fb:720x480,720x480,1,0
[    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: 99MB = 99MB total
[    0.000000] Memory: 91192k/91192k available, 10184k reserved, 0K highmem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     DMA     : 0xfe600000 - 0xfee00000   (   8 MB)
[    0.000000]     vmalloc : 0xc9000000 - 0xe0000000   ( 368 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xc8a00000   ( 138 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .init : 0xc0008000 - 0xc002d000   ( 148 kB)
[    0.000000]       .text : 0xc002d000 - 0xc04a9000   (4592 kB)
[    0.000000]       .data : 0xc04aa000 - 0xc04dd640   ( 206 kB)
[    0.000000] Preemptable hierarchical RCU implementation.
[    0.000000]  RCU-based detection of stalled CPUs is disabled.
[    0.000000]  Verbose stalled-CPUs detection is disabled.
[    0.000000] NR_IRQS:224
[    0.000000] sched_clock: 32 bits at 60MHz, resolution 16ns, wraps every 71582ms
[    0.000000] Console: colour dummy device 80x30
[    0.000000] console [ttyS0] enabled
[    0.000590] Calibrating delay loop... 478.41 BogoMIPS (lpj=2392064)
[    0.250124] pid_max: default: 32768 minimum: 301
[    0.250592] Mount-cache hash table entries: 512
[    0.251460] CPU: Testing write buffer coherency: ok
[    0.258689] NET: Registered protocol family 16
[    0.265132] Ambarella Coconut:
[    0.265168]  chip id:                5100
[    0.265182]  board type:             3
[    0.265195]  board revision:         10
[    0.265210]  chip name:              a5m
[    0.265223]  HAL version:            176869
[    0.265241]  reference clock:        24000000
[    0.265260]  system configuration:   0x177804ea
[    0.265280]  boot type:              0x00000002
[    0.265296]  hif type:               0x00000000
[    0.296429] bio: create slab <bio-0> at 0
[    0.299221] ambarella-spi ambarella-spi.0: ambarella SPI Controller 0 created 
[    0.311198] ambarella-i2c ambarella-i2c.0: Ambarella Media Processor I2C adapter[i2c-0] probed!
[    0.312931] ambarella-i2c ambarella-i2c.1: Ambarella Media Processor I2C adapter[i2c-1] probed!
[    0.314475] i2c i2c-0: Added multiplexed i2c bus 2
[    0.314522] ambarella-i2cmux ambarella-i2cmux.0: mux on ambarella-i2c adapter
[    0.317714] Advanced Linux Sound Architecture Driver Version 1.0.23.
[    0.322139] cfg80211: Calling CRDA to update world regulatory domain
[    0.323969] Switching to clocksource ambarella-cs-timer
[    0.330159] Switched to NOHz mode on CPU #0
[    0.393250] NET: Registered protocol family 2
[    0.393648] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.394982] TCP established hash table entries: 4096 (order: 3, 32768 bytes)
[    0.395211] TCP bind hash table entries: 4096 (order: 2, 16384 bytes)
[    0.395369] TCP: Hash tables configured (established 4096 bind 4096)
[    0.395393] TCP reno registered
[    0.395422] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    0.395472] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    0.396168] NET: Registered protocol family 1
[    0.397167] RPC: Registered udp transport module.
[    0.397208] RPC: Registered tcp transport module.
[    0.397231] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.397793] Trying to unpack rootfs image as initramfs...
[    0.400347] rootfs image is not initramfs (no cpio magic); looks like an initrd
[    0.437009] Freeing initrd memory: 4096K
[    0.440222] [ kernel version:  svn-50562 ]
[    0.440328] mmc0 power register success!
[    0.440373] mmc1 power register success!
[    0.440533] reboot times :1 
[    0.466735] msgmni has been set to 186
[    0.476421] alg: No test for stdrng (krng)
[    0.476595] io scheduler noop registered
[    0.476625] io scheduler deadline registered
[    0.476823] io scheduler cfq registered (default)
[    0.480970] ambarella-fb ambarella-fb.0: probe p[720x480] v[720x576] c[1] b[0] l[736] @ [0xc5980000:0x00068000]!
[    0.482964] ambarella-uart.0: ttyS0 at MMIO 0x70005000 (irq = 9) is a ambuart
[    0.514234] ambarella-uart.1: ttyS1 at MMIO 0x7001f000 (irq = 25) is a ambuart
[    0.557603] brd: module loaded
[    0.573258] loop: module loaded
[    0.577139] NAND device: Manufacturer ID: 0xec, Chip ID: 0xf1 (Samsung NAND 128MiB 3,3V 8-bit)
[    0.577191] ambarella_nand_config_flash: 0x02e00140, 0x02c00140
[    0.577676] Bad block table found at page 65472, version 0x01
[    0.578290] Bad block table found at page 65408, version 0x01
[    0.578645] nand_read_bbt: Bad block at 0x000002ec0000
[    0.585532] ambarella-nand ambarella-nand: ambarella_nand_probe: Partition infomation found!
[    0.585605] Creating 18 MTD partitions on "ambnand":
[    0.585645] 0x000000000000-0x000000020000 : "bst"
[    0.589895] 0x000000020000-0x000000120000 : "ptb"
[    0.593974] 0x000000120000-0x000000220000 : "bld"
[    0.598436] 0x000000220000-0x000000320000 : "hal"
[    0.602605] 0x000000320000-0x000000420000 : "ano_ptb"
[    0.607155] 0x000000420000-0x0000004a0000 : "env"
[    0.611450] 0x0000004a0000-0x000000520000 : "param"
[    0.616155] 0x000000520000-0x000000620000 : "dpt"
[    0.620561] 0x000000620000-0x000001020000 : "rcvy"
[    0.625299] 0x000001020000-0x000001820000 : "krn_pri"
[    0.629567] 0x000001820000-0x000002020000 : "krn_sec"
[    0.633825] 0x000002020000-0x000002420000 : "rmd_pri"
[    0.638470] 0x000002420000-0x000002820000 : "rmd_sec"
[    0.642836] 0x000002820000-0x000004020000 : "app_pri"
[    0.647640] 0x000004020000-0x000005820000 : "app_sec"
[    0.652169] 0x000005820000-0x000005c20000 : "cfg_pri"
[    0.656998] 0x000005c20000-0x000006020000 : "cfg_sec"
[    0.661561] 0x000006020000-0x000007020000 : "dbg"
[    0.673474] PPP generic driver version 2.4.2
[    0.675277] PPP Deflate Compression module registered
[    0.675323] PPP BSD Compression module registered
二楼继续信息

10 个解决方案

#1


[    0.871665] Ambarella MII Bus: probed
[    0.873467] ambarella-eth ambarella-eth.0: MAC Address[44:19:b6:05:c2:04].
[    0.874381] console [netcon0] enabled
[    0.874411] netconsole: network logging started
[    0.876158] mousedev: PS/2 mouse device common for all mice
[    0.877350] input: AmbInput as /devices/virtual/input/input0
[    0.878463] ambarella_gpio_irq_set_wake: irq[75] = girq[11] = 1
[    0.878509] ambarella-input ambarella-input: AmbInput probed!
[    0.879621] ambarella-adc ambarella-adc: ADC Host Controller [polling mode] probed!
[    0.881458] ambarella-rtc ambarella-rtc: rtc core: registered ambarella-rtc as rtc0
[    0.882108] i2c /dev entries driver
[    0.887557] ambarella-wdt ambarella-wdt: Ambarella Media Processor Watch Dog Timer[ambarella-wdt].
[    0.895085] ALSA device list:
[    0.895122]   No soundcards found.
[    0.895320] Netfilter messages via NETLINK v0.30.
[    0.895547] nf_conntrack version 0.5.0 (1488 buckets, 5952 max)
[    0.896270] ip_tables: (C) 2000-2006 Netfilter Core Team
[    0.896453] TCP cubic registered
[    0.896928] NET: Registered protocol family 10
[    0.899716] Mobile IPv6
[    0.899860] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    0.900165] IPv6 over IPv4 tunneling driver
[    0.904648] NET: Registered protocol family 17
[    0.905564] sctp: Hash tables configured (established 4096 bind 8192)
[    0.905953] sctp: sctp_init_sock(sk: c596bb20)
[    0.906087] lib80211: common routines for IEEE802.11 drivers
[    0.906124] lib80211_crypt: registered algorithm 'NULL'
[    0.910654] ambarella-rtc ambarella-rtc: setting system clock to 2014-02-13 08:13:57 UTC (1392279237)
[    0.911567] RAMDISK: gzip image found at block 0
[    1.714971] VFS: Mounted root (ext2 filesystem) on device 1:0.
[    1.715208] Freeing init memory: 148K
[    3.806574] UBI: attaching mtd13 to ubi1
[    3.806620] UBI: physical eraseblock size:   131072 bytes (128 KiB)
[    3.806645] UBI: logical eraseblock size:    129024 bytes
[    3.806666] UBI: smallest flash I/O unit:    2048
[    3.806685] UBI: sub-page size:              512
[    3.806705] UBI: VID header offset:          512 (aligned 512)
[    3.806726] UBI: data offset:                2048
[    3.872606] UBI: max. sequence number:       333
[    3.894223] UBI: attached mtd13 to ubi1
[    3.894260] UBI: MTD device name:            "app_pri"
[    3.894282] UBI: MTD device size:            24 MiB
[    3.894302] UBI: number of good PEBs:        191
[    3.894319] UBI: number of bad PEBs:         1
[    3.894336] UBI: number of corrupted PEBs:   0
[    3.894353] UBI: max. allowed volumes:       128
[    3.894370] UBI: wear-leveling threshold:    4096
[    3.894387] UBI: number of internal volumes: 1
[    3.894404] UBI: number of user volumes:     1
[    3.894421] UBI: available PEBs:             0
[    3.894438] UBI: total number of reserved PEBs: 191
[    3.894457] UBI: number of PEBs reserved for bad PEB handling: 2
[    3.894479] UBI: max/mean erase counter: 5/2
[    3.894497] UBI: image sequence number:  252878585
[    3.903206] UBI: background thread "ubi_bgt1d" started, PID 626
[    3.994207] UBIFS: recovery needed
[    4.052371] UBIFS: recovery completed
[    4.052422] UBIFS: mounted UBI device 1, volume 0, name "app_pri"
[    4.052453] UBIFS: file system size:   22708224 bytes (22176 KiB, 21 MiB, 176 LEBs)
[    4.052483] UBIFS: journal size:       1161216 bytes (1134 KiB, 1 MiB, 9 LEBs)
[    4.052509] UBIFS: media format:       w4/r0 (latest is w4/r0)
[    4.052529] UBIFS: default compressor: lzo
[    4.052548] UBIFS: reserved for root:  1072565 bytes (1047 KiB)
[    6.410477] UBI: attaching mtd15 to ubi3
[    6.410523] UBI: physical eraseblock size:   131072 bytes (128 KiB)
[    6.410548] UBI: logical eraseblock size:    129024 bytes
[    6.410568] UBI: smallest flash I/O unit:    2048
[    6.410587] UBI: sub-page size:              512
[    6.410606] UBI: VID header offset:          512 (aligned 512)
[    6.410627] UBI: data offset:                2048
[    6.420774] UBI: max. sequence number:       279
[    6.444262] UBI: attached mtd15 to ubi3
[    6.444299] UBI: MTD device name:            "cfg_pri"
[    6.444320] UBI: MTD device size:            4 MiB
[    6.444338] UBI: number of good PEBs:        32
[    6.444355] UBI: number of bad PEBs:         0
[    6.444372] UBI: number of corrupted PEBs:   0
[    6.444389] UBI: max. allowed volumes:       128
[    6.444406] UBI: wear-leveling threshold:    4096
[    6.444423] UBI: number of internal volumes: 1
[    6.444441] UBI: number of user volumes:     1
[    6.444457] UBI: available PEBs:             0
[    6.444474] UBI: total number of reserved PEBs: 32
[    6.444493] UBI: number of PEBs reserved for bad PEB handling: 2
[    6.444515] UBI: max/mean erase counter: 15/11
[    6.444533] UBI: image sequence number:  1013673809
[    6.453145] UBI: background thread "ubi_bgt3d" started, PID 636
[    6.540403] UBIFS: recovery needed
[    6.598207] UBIFS: recovery completed
[    6.598258] UBIFS: mounted UBI device 3, volume 0, name "cfg_pri"
[    6.598288] UBIFS: file system size:   2193408 bytes (2142 KiB, 2 MiB, 17 LEBs)
[    6.598317] UBIFS: journal size:       1032193 bytes (1008 KiB, 0 MiB, 6 LEBs)
[    6.598343] UBIFS: media format:       w4/r0 (latest is w4/r0)
[    6.598364] UBIFS: default compressor: lzo
[    6.598383] UBIFS: reserved for root:  103599 bytes (101 KiB)
[    6.679955] UBI: attaching mtd16 to ubi4
[    6.679999] UBI: physical eraseblock size:   131072 bytes (128 KiB)
[    6.680023] UBI: logical eraseblock size:    129024 bytes
[    6.680043] UBI: smallest flash I/O unit:    2048
[    6.680062] UBI: sub-page size:              512
[    6.680081] UBI: VID header offset:          512 (aligned 512)

#2


[    6.680102] UBI: data offset:                2048
[    6.690239] UBI: max. sequence number:       278
[    6.716667] UBI: attached mtd16 to ubi4
[    6.716706] UBI: MTD device name:            "cfg_sec"
[    6.716729] UBI: MTD device size:            4 MiB
[    6.716748] UBI: number of good PEBs:        32
[    6.716765] UBI: number of bad PEBs:         0
[    6.716782] UBI: number of corrupted PEBs:   0
[    6.716800] UBI: max. allowed volumes:       128
[    6.716817] UBI: wear-leveling threshold:    4096
[    6.716835] UBI: number of internal volumes: 1
[    6.716852] UBI: number of user volumes:     1
[    6.716868] UBI: available PEBs:             0
[    6.716886] UBI: total number of reserved PEBs: 32
[    6.716904] UBI: number of PEBs reserved for bad PEB handling: 2
[    6.716926] UBI: max/mean erase counter: 15/11
[    6.716944] UBI: image sequence number:  1509503550
[    6.725919] UBI: background thread "ubi_bgt4d" started, PID 646
[    6.809677] UBIFS: recovery needed
[    6.845685] UBIFS: recovery completed
[    6.845735] UBIFS: mounted UBI device 4, volume 0, name "cfg_sec"
[    6.845767] UBIFS: file system size:   2193408 bytes (2142 KiB, 2 MiB, 17 LEBs)
[    6.845796] UBIFS: journal size:       1032193 bytes (1008 KiB, 0 MiB, 6 LEBs)
[    6.845823] UBIFS: media format:       w4/r0 (latest is w4/r0)
[    6.845844] UBIFS: default compressor: lzo
[    6.845863] UBIFS: reserved for root:  103599 bytes (101 KiB)
[    8.031608] net eth0: Could not find default PHY in 9.
[    8.031655] net eth0: Try PHY[3] whose id is 0x001cc816!
[    8.033982] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   10.024516] PHY: 0:03 - Link is Up - 100/Full
[   10.024745] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   11.600234] dsp: module license 'Proprietary' taints kernel.
[   11.600277] Disabling lock debugging due to kernel taint
[   11.685586] img: aaa_fifo2_base malloc c5be0000
[   12.166837] >>>>>> DSP LOG ADDR START PHY 0xc0080000 
[   12.166874] Init software HR timer for DSP communication
[   12.241905] amba_debug_init 248:248.
[   15.932615] Switching to clocksource jiffies
[   15.932615] Switching to clocksource ambarella-cs-timer
[   14.484297] Vin warn: amba_vin_vsync_bind: No need bind to vsync itself!
[   14.484327] Vin warn: amba_vin_vsync_bind: Skip NULL pirqinfo!
[   14.554004] Vin error: amba_vin_vsync_unbind unknown vsync_mode 5!
[   14.554192] Vin warn: amba_vin_vsync_bind: No need bind to vsync itself!
[   14.554234] Vin warn: amba_vin_vsync_bind: Skip NULL pirqinfo!
[   19.305678] eth0: no IPv6 routers present
[   22.365892] ak4954 i2c probe
[   22.426177] AK7719 DSP status 0x40
[   22.455734] ak7719 i2c probe
[   22.455967] ak4954 mode init
[   22.494841] ak4954-codec 0-0012: AK4954 Audio Codec 0.1AK4954 probe
[   22.603815] audio codec AK4954 initialized, 0!
[   22.605461] asoc: ak4954-hifi <-> ambarella-i2s.0 mapping ok
[   22.884988] AK4954:set input volum 50
[   22.997188] ========== SD Driver Build Date: Sep  2 2013, Time: 15:03:03 ==========
[   22.997379] SD card slot0 + slot1, card detect mode:HW
[   22.997634] ambarella-sd ambarella-sd.0: Slot0 use bounce buffer[0xc26c0000<->0xc28c0000]
[   22.997676] ambarella-sd ambarella-sd.0: Slot0 req_size=131072, segs=32, seg_size=131072
[   22.997846] ambarella-sd ambarella-sd.0: Slot1 use bounce buffer[0xc26e0000<->0xc28e0000]
[   22.997883] ambarella-sd ambarella-sd.0: Slot1 req_size=131072, segs=32, seg_size=131072
[   23.075765] ambarella-sd ambarella-sd.0: Ambarella SD/MMC[0] probed 2 slots, 0x09e130b0!
[   23.181832] db_max 0x2d000000, db_step 0x300000
[   23.325813] mmc1:attach sdio array 1 
[   23.328139] mmc1: new high speed SDIO card at address 0001
[   23.887096] CMEMK module: built on Aug 23 2012 at 17:05:43
[   23.887144]  Reference Linux version 2.6.38
[   23.887163]  File /mnt/data_bsp/data_yuhuanhuan/raptor/a5s_svn2/kernel/hik_drivers/cmem/src/module/cmemk.c
[   23.894831] cmemk initialized
[   26.637329] Vin error: amba_vin_vsync_unbind unknown vsync_mode 5!
[   27.223275] set audio rates 8000Hz
[   27.223653] load dsp ram for 8000Hz rate
[   29.771585] set audio rates 8000Hz
[   29.771963] load dsp ram for 8000Hz rate
[   36.377736] RTL871X: module init start version:v4.1.3_6099.20121214
[   36.923086] RTL871X: module init ret=0
[   38.526075] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   38.557176] RTL871X: set bssid:00:00:00:00:00:00
[   49.054043] iav error: Failed to wait for completion!
[   49.107957] iav error: Failed to wait for completion!
再次谢过各位路过和可以帮助的朋友了

#3


UBOOT启动信息是什么,

#4


没描述清楚想干什么,做了什么

#5


引用 4 楼 zhxianbin 的回复:
没描述清楚想干什么,做了什么
我想在磁盘上做一些改动 比如说建个目录 建个文件 但是设备重启之后这些目录文件都被还原了

#6


flash有18个分区,有一个是 rcvy ,应该是恢复的,从打印信息看:

[    3.994207] UBIFS: recovery needed
[    4.052371] UBIFS: recovery completed

楼主找一下是为什么这么做吧

#7


引用 6 楼 zhxianbin 的回复:
flash有18个分区,有一个是 rcvy ,应该是恢复的,从打印信息看:

[    3.994207] UBIFS: recovery needed
[    4.052371] UBIFS: recovery completed

楼主找一下是为什么这么做吧
朋友 价格qq私聊吧 674355353

#8


引用 7 楼 u012141645 的回复:
Quote: 引用 6 楼 zhxianbin 的回复:

flash有18个分区,有一个是 rcvy ,应该是恢复的,从打印信息看:

[    3.994207] UBIFS: recovery needed
[    4.052371] UBIFS: recovery completed

楼主找一下是为什么这么做吧
朋友 价格qq私聊吧 674355353


这问题只能自己找,我没有东西没法分析

#9


该回复于2014-04-08 08:47:22被管理员删除

#10


得分
!!!!!!!!!!!!!!!!!!!!!!!!!

#1


[    0.871665] Ambarella MII Bus: probed
[    0.873467] ambarella-eth ambarella-eth.0: MAC Address[44:19:b6:05:c2:04].
[    0.874381] console [netcon0] enabled
[    0.874411] netconsole: network logging started
[    0.876158] mousedev: PS/2 mouse device common for all mice
[    0.877350] input: AmbInput as /devices/virtual/input/input0
[    0.878463] ambarella_gpio_irq_set_wake: irq[75] = girq[11] = 1
[    0.878509] ambarella-input ambarella-input: AmbInput probed!
[    0.879621] ambarella-adc ambarella-adc: ADC Host Controller [polling mode] probed!
[    0.881458] ambarella-rtc ambarella-rtc: rtc core: registered ambarella-rtc as rtc0
[    0.882108] i2c /dev entries driver
[    0.887557] ambarella-wdt ambarella-wdt: Ambarella Media Processor Watch Dog Timer[ambarella-wdt].
[    0.895085] ALSA device list:
[    0.895122]   No soundcards found.
[    0.895320] Netfilter messages via NETLINK v0.30.
[    0.895547] nf_conntrack version 0.5.0 (1488 buckets, 5952 max)
[    0.896270] ip_tables: (C) 2000-2006 Netfilter Core Team
[    0.896453] TCP cubic registered
[    0.896928] NET: Registered protocol family 10
[    0.899716] Mobile IPv6
[    0.899860] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    0.900165] IPv6 over IPv4 tunneling driver
[    0.904648] NET: Registered protocol family 17
[    0.905564] sctp: Hash tables configured (established 4096 bind 8192)
[    0.905953] sctp: sctp_init_sock(sk: c596bb20)
[    0.906087] lib80211: common routines for IEEE802.11 drivers
[    0.906124] lib80211_crypt: registered algorithm 'NULL'
[    0.910654] ambarella-rtc ambarella-rtc: setting system clock to 2014-02-13 08:13:57 UTC (1392279237)
[    0.911567] RAMDISK: gzip image found at block 0
[    1.714971] VFS: Mounted root (ext2 filesystem) on device 1:0.
[    1.715208] Freeing init memory: 148K
[    3.806574] UBI: attaching mtd13 to ubi1
[    3.806620] UBI: physical eraseblock size:   131072 bytes (128 KiB)
[    3.806645] UBI: logical eraseblock size:    129024 bytes
[    3.806666] UBI: smallest flash I/O unit:    2048
[    3.806685] UBI: sub-page size:              512
[    3.806705] UBI: VID header offset:          512 (aligned 512)
[    3.806726] UBI: data offset:                2048
[    3.872606] UBI: max. sequence number:       333
[    3.894223] UBI: attached mtd13 to ubi1
[    3.894260] UBI: MTD device name:            "app_pri"
[    3.894282] UBI: MTD device size:            24 MiB
[    3.894302] UBI: number of good PEBs:        191
[    3.894319] UBI: number of bad PEBs:         1
[    3.894336] UBI: number of corrupted PEBs:   0
[    3.894353] UBI: max. allowed volumes:       128
[    3.894370] UBI: wear-leveling threshold:    4096
[    3.894387] UBI: number of internal volumes: 1
[    3.894404] UBI: number of user volumes:     1
[    3.894421] UBI: available PEBs:             0
[    3.894438] UBI: total number of reserved PEBs: 191
[    3.894457] UBI: number of PEBs reserved for bad PEB handling: 2
[    3.894479] UBI: max/mean erase counter: 5/2
[    3.894497] UBI: image sequence number:  252878585
[    3.903206] UBI: background thread "ubi_bgt1d" started, PID 626
[    3.994207] UBIFS: recovery needed
[    4.052371] UBIFS: recovery completed
[    4.052422] UBIFS: mounted UBI device 1, volume 0, name "app_pri"
[    4.052453] UBIFS: file system size:   22708224 bytes (22176 KiB, 21 MiB, 176 LEBs)
[    4.052483] UBIFS: journal size:       1161216 bytes (1134 KiB, 1 MiB, 9 LEBs)
[    4.052509] UBIFS: media format:       w4/r0 (latest is w4/r0)
[    4.052529] UBIFS: default compressor: lzo
[    4.052548] UBIFS: reserved for root:  1072565 bytes (1047 KiB)
[    6.410477] UBI: attaching mtd15 to ubi3
[    6.410523] UBI: physical eraseblock size:   131072 bytes (128 KiB)
[    6.410548] UBI: logical eraseblock size:    129024 bytes
[    6.410568] UBI: smallest flash I/O unit:    2048
[    6.410587] UBI: sub-page size:              512
[    6.410606] UBI: VID header offset:          512 (aligned 512)
[    6.410627] UBI: data offset:                2048
[    6.420774] UBI: max. sequence number:       279
[    6.444262] UBI: attached mtd15 to ubi3
[    6.444299] UBI: MTD device name:            "cfg_pri"
[    6.444320] UBI: MTD device size:            4 MiB
[    6.444338] UBI: number of good PEBs:        32
[    6.444355] UBI: number of bad PEBs:         0
[    6.444372] UBI: number of corrupted PEBs:   0
[    6.444389] UBI: max. allowed volumes:       128
[    6.444406] UBI: wear-leveling threshold:    4096
[    6.444423] UBI: number of internal volumes: 1
[    6.444441] UBI: number of user volumes:     1
[    6.444457] UBI: available PEBs:             0
[    6.444474] UBI: total number of reserved PEBs: 32
[    6.444493] UBI: number of PEBs reserved for bad PEB handling: 2
[    6.444515] UBI: max/mean erase counter: 15/11
[    6.444533] UBI: image sequence number:  1013673809
[    6.453145] UBI: background thread "ubi_bgt3d" started, PID 636
[    6.540403] UBIFS: recovery needed
[    6.598207] UBIFS: recovery completed
[    6.598258] UBIFS: mounted UBI device 3, volume 0, name "cfg_pri"
[    6.598288] UBIFS: file system size:   2193408 bytes (2142 KiB, 2 MiB, 17 LEBs)
[    6.598317] UBIFS: journal size:       1032193 bytes (1008 KiB, 0 MiB, 6 LEBs)
[    6.598343] UBIFS: media format:       w4/r0 (latest is w4/r0)
[    6.598364] UBIFS: default compressor: lzo
[    6.598383] UBIFS: reserved for root:  103599 bytes (101 KiB)
[    6.679955] UBI: attaching mtd16 to ubi4
[    6.679999] UBI: physical eraseblock size:   131072 bytes (128 KiB)
[    6.680023] UBI: logical eraseblock size:    129024 bytes
[    6.680043] UBI: smallest flash I/O unit:    2048
[    6.680062] UBI: sub-page size:              512
[    6.680081] UBI: VID header offset:          512 (aligned 512)

#2


[    6.680102] UBI: data offset:                2048
[    6.690239] UBI: max. sequence number:       278
[    6.716667] UBI: attached mtd16 to ubi4
[    6.716706] UBI: MTD device name:            "cfg_sec"
[    6.716729] UBI: MTD device size:            4 MiB
[    6.716748] UBI: number of good PEBs:        32
[    6.716765] UBI: number of bad PEBs:         0
[    6.716782] UBI: number of corrupted PEBs:   0
[    6.716800] UBI: max. allowed volumes:       128
[    6.716817] UBI: wear-leveling threshold:    4096
[    6.716835] UBI: number of internal volumes: 1
[    6.716852] UBI: number of user volumes:     1
[    6.716868] UBI: available PEBs:             0
[    6.716886] UBI: total number of reserved PEBs: 32
[    6.716904] UBI: number of PEBs reserved for bad PEB handling: 2
[    6.716926] UBI: max/mean erase counter: 15/11
[    6.716944] UBI: image sequence number:  1509503550
[    6.725919] UBI: background thread "ubi_bgt4d" started, PID 646
[    6.809677] UBIFS: recovery needed
[    6.845685] UBIFS: recovery completed
[    6.845735] UBIFS: mounted UBI device 4, volume 0, name "cfg_sec"
[    6.845767] UBIFS: file system size:   2193408 bytes (2142 KiB, 2 MiB, 17 LEBs)
[    6.845796] UBIFS: journal size:       1032193 bytes (1008 KiB, 0 MiB, 6 LEBs)
[    6.845823] UBIFS: media format:       w4/r0 (latest is w4/r0)
[    6.845844] UBIFS: default compressor: lzo
[    6.845863] UBIFS: reserved for root:  103599 bytes (101 KiB)
[    8.031608] net eth0: Could not find default PHY in 9.
[    8.031655] net eth0: Try PHY[3] whose id is 0x001cc816!
[    8.033982] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   10.024516] PHY: 0:03 - Link is Up - 100/Full
[   10.024745] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   11.600234] dsp: module license 'Proprietary' taints kernel.
[   11.600277] Disabling lock debugging due to kernel taint
[   11.685586] img: aaa_fifo2_base malloc c5be0000
[   12.166837] >>>>>> DSP LOG ADDR START PHY 0xc0080000 
[   12.166874] Init software HR timer for DSP communication
[   12.241905] amba_debug_init 248:248.
[   15.932615] Switching to clocksource jiffies
[   15.932615] Switching to clocksource ambarella-cs-timer
[   14.484297] Vin warn: amba_vin_vsync_bind: No need bind to vsync itself!
[   14.484327] Vin warn: amba_vin_vsync_bind: Skip NULL pirqinfo!
[   14.554004] Vin error: amba_vin_vsync_unbind unknown vsync_mode 5!
[   14.554192] Vin warn: amba_vin_vsync_bind: No need bind to vsync itself!
[   14.554234] Vin warn: amba_vin_vsync_bind: Skip NULL pirqinfo!
[   19.305678] eth0: no IPv6 routers present
[   22.365892] ak4954 i2c probe
[   22.426177] AK7719 DSP status 0x40
[   22.455734] ak7719 i2c probe
[   22.455967] ak4954 mode init
[   22.494841] ak4954-codec 0-0012: AK4954 Audio Codec 0.1AK4954 probe
[   22.603815] audio codec AK4954 initialized, 0!
[   22.605461] asoc: ak4954-hifi <-> ambarella-i2s.0 mapping ok
[   22.884988] AK4954:set input volum 50
[   22.997188] ========== SD Driver Build Date: Sep  2 2013, Time: 15:03:03 ==========
[   22.997379] SD card slot0 + slot1, card detect mode:HW
[   22.997634] ambarella-sd ambarella-sd.0: Slot0 use bounce buffer[0xc26c0000<->0xc28c0000]
[   22.997676] ambarella-sd ambarella-sd.0: Slot0 req_size=131072, segs=32, seg_size=131072
[   22.997846] ambarella-sd ambarella-sd.0: Slot1 use bounce buffer[0xc26e0000<->0xc28e0000]
[   22.997883] ambarella-sd ambarella-sd.0: Slot1 req_size=131072, segs=32, seg_size=131072
[   23.075765] ambarella-sd ambarella-sd.0: Ambarella SD/MMC[0] probed 2 slots, 0x09e130b0!
[   23.181832] db_max 0x2d000000, db_step 0x300000
[   23.325813] mmc1:attach sdio array 1 
[   23.328139] mmc1: new high speed SDIO card at address 0001
[   23.887096] CMEMK module: built on Aug 23 2012 at 17:05:43
[   23.887144]  Reference Linux version 2.6.38
[   23.887163]  File /mnt/data_bsp/data_yuhuanhuan/raptor/a5s_svn2/kernel/hik_drivers/cmem/src/module/cmemk.c
[   23.894831] cmemk initialized
[   26.637329] Vin error: amba_vin_vsync_unbind unknown vsync_mode 5!
[   27.223275] set audio rates 8000Hz
[   27.223653] load dsp ram for 8000Hz rate
[   29.771585] set audio rates 8000Hz
[   29.771963] load dsp ram for 8000Hz rate
[   36.377736] RTL871X: module init start version:v4.1.3_6099.20121214
[   36.923086] RTL871X: module init ret=0
[   38.526075] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   38.557176] RTL871X: set bssid:00:00:00:00:00:00
[   49.054043] iav error: Failed to wait for completion!
[   49.107957] iav error: Failed to wait for completion!
再次谢过各位路过和可以帮助的朋友了

#3


UBOOT启动信息是什么,

#4


没描述清楚想干什么,做了什么

#5


引用 4 楼 zhxianbin 的回复:
没描述清楚想干什么,做了什么
我想在磁盘上做一些改动 比如说建个目录 建个文件 但是设备重启之后这些目录文件都被还原了

#6


flash有18个分区,有一个是 rcvy ,应该是恢复的,从打印信息看:

[    3.994207] UBIFS: recovery needed
[    4.052371] UBIFS: recovery completed

楼主找一下是为什么这么做吧

#7


引用 6 楼 zhxianbin 的回复:
flash有18个分区,有一个是 rcvy ,应该是恢复的,从打印信息看:

[    3.994207] UBIFS: recovery needed
[    4.052371] UBIFS: recovery completed

楼主找一下是为什么这么做吧
朋友 价格qq私聊吧 674355353

#8


引用 7 楼 u012141645 的回复:
Quote: 引用 6 楼 zhxianbin 的回复:

flash有18个分区,有一个是 rcvy ,应该是恢复的,从打印信息看:

[    3.994207] UBIFS: recovery needed
[    4.052371] UBIFS: recovery completed

楼主找一下是为什么这么做吧
朋友 价格qq私聊吧 674355353


这问题只能自己找,我没有东西没法分析

#9


该回复于2014-04-08 08:47:22被管理员删除

#10


得分
!!!!!!!!!!!!!!!!!!!!!!!!!