During the development of an embedded system, I made some changes on the Linux kernel and compiled it to get the uImage, u-boot.bin and .dts file. Now the last thing booting the system needs is to update rootfs. My questions are:
1) Do I really need to update rootfs after I reconfigured the kernel and rebuilt it?
2) If yes, how can I update the rootfs accordingly? I have the old one (compressed file rootfs_ext2.gz.uboot). I guess I need to uncompress it and make changes according to the changes I made for the kernel, and then compress it back in order to be used in boot. Am I right? What files I need to update in the rootfs?
Thanks in advance!