The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
33 views

Moving to upstart from busybox causing the kernel panic

We created simple linux file system using the busybox and it is working succesfully. But we tried to move from busybox init process to upstart init. But we are facing the kernel panic, when we are ...
0
votes
0answers
34 views

add custom program to android image being generated

How can I add a custom system-debug-tool to an android image? It is not listed within build/out/target/product/<snip>/installed-files.txt and but I can still see the intermediate object files ...
0
votes
1answer
205 views

Copy a shell script to android out folder and execute it during boot

I have a shell script which I need to copy to anywhere in out folder during Android build process so that it appears somewhere in Android RootFS. Now, once it is copied after Android build process and ...
-1
votes
1answer
143 views

Try to create a minimum rootfs in fat16 but become nilfs2? [closed]

I'm trying to make a minimum rootfs for u-boot by this method # image.dd with partition table as fat16 by parted kpartx -a -v image.dd mkdosfs -F16 -v /dev/mapper/loop0p1 mount -o loop ...
1
vote
1answer
2k views

How to make a tar backup of a root filesystem? [closed]

I have linux installed on SD card, I used this command to install the rootfs tar xpjf rootfs.tar.bz -C /mnt/rootfs/ Now, I made some changes to the rootfs and I would like to create a backup that I ...
0
votes
0answers
132 views

How do I have Linux boot with a rootfs in RAM? [closed]

The rootfs is a squashfs image and my bootloader is loading it into some address in SDRAM. What parameters do I need to pass to the kernel so It can mount the rootfs from there? Squashfs support is ...
0
votes
1answer
93 views

What happens if memory leaks on rootfs?

I have a linux totally on rootfs ( which as I understand is an instance of ramfs ). There's no hard disk and no swap. And I got a process that leaks memory continuously. The virutal memory eventually ...
0
votes
2answers
1k views

Why is the root filesystem is loaded into a ramdisk?

I am studying the boot process in Linux. I came across this sentence "RAM is several orders of magnitude faster than a floppy disk, so system operation is fast from a ramdisk" The kernel will anyway ...
0
votes
1answer
313 views

extend the size of already existing ext2 image

Is there a possibility to extend the size of already existing ext2 image? This image is a ramdisk based root file system. I already have an image. but I want to extend the size of this image. Is it ...
0
votes
1answer
1k views

Mount RootFS error: VFS: Cannot open root device “mtdblock4” or unknown-block(0,0)

My MTD partition is: Creating 5 MTD partitions on "Physically mapped flash": 0x00000000-0x00040000 : "UBoot" 0x00040000-0x00060000 : "BDINFO" 0x00060000-0x00100000 : "JFFS2" 0x00100000-0x00380000 : ...
0
votes
1answer
3k views

mount rootfs on loopback

I have a rootfs boot image that I want to test by mounting on my local file system. How can I do this ? EDIT: The file was a rootfs.img but it turned out I did not have the correct filesystem support ...