everyone. I'm working on my first embedded Linux and I would like to have a nice bootsplash. I've decided to use an initrd to get it up as early as possible, but it looks like the kernel is not calling the /init script. It mounts my ram disk and proceeds with the usual booting sequence.
<5>RAMDISK: squashfs filesystem found at block 0
<5>RAMDISK: Loading 16643KiB [1 disk] into ram disk...
<6>VFS: Mounted root (squashfs filesystem) readonly on device 1:0.
<6>kjournald starting. Commit interval 5 seconds
<6>EXT3-fs (mmcblk0p1): using internal journal
<6>EXT3-fs (mmcblk0p1): mounted filesystem with ordered data mode
<6>VFS: Mounted root (ext3 filesystem) on device 179:1.
<5>Trying to move old root to /initrd ... okay
<6>devtmpfs: mounted
<6>Freeing init memory: 180K
<30>udevd[79]: starting version 182
I have tried without success all sorts of debugging I knew of to test whether the script was being called. I get no error at all. After logging in, I can see the ram disk mounted at /initrd, as it was supposed to be.
I'm using a Cubieboard 2 with the drivers and kernel (3.4) provided by the community. I know it's an old version, but it's the one with the best support for sunxi SoCs so far. I'm also using both file systems (rootfs and initramfs) provided by Linaro as a base.
Could anyone help me?
Thank you.