1

I wonder that if I can run a Qt application in initrd between the grub and the real os startup. And stop when the Qt application run.

Tarod
  • 6,732
  • 5
  • 44
  • 50
GLaDOS
  • 11
  • 2

1 Answers1

0

Yes,you can do it since initrd itself is also an mini root system. however, compared to normal root system, A lot of libraries aren't included in initrd to keep the size reasonable. so you have to add all the libraries needed by your QT program yourself.or you can compile a static linked QT program which is a little more simple than dynamic ones.

wen
  • 114
  • 1
  • 3