<div dir="ltr"><div><div><div><div>Hi!<br><br></div>I would like to load a component configuration from a file on linux. So I've added a lx_fs and a fs_rom component that replaces my dynamic_rom component without changing any code in my component. So far is everything good (I hope!).<br><br></div><div>To my questions:<br></div><div>1. How do I state which file to read?<br></div><div>2. My understanding is that the root attribute in lx_fs defines which directory genode will see as root. But anything except "/" here results in the error message "Session root directory "..." does not exist".<br></div><div>3. Do I write the same thing in the config file as I did when having the dynamic_rom (<config attribute="value" .... />)?<br></div><div><br></div><div>My configuration:<br></div><start name="component"><br>   <resource name="RAM" quantum="5M"/><br>   <route><br>    <service name="ROM"><br>      <child name="fs_rom"/><br>    </service><br></div>     <any-service> <parent/> <any-child/> </any-service><br>   </route><br>  </start><br><br>  <start name="fs_rom"><br>    <resource name="RAM" quantum="4M" /><br>    <provides> <service name="ROM" /> </provides><br>    <route><br>      <service name="File_system"> <child name="lx_fs" /> </service><br>      <any-service> <parent/> <any-child/> </any-service><br>    </route><br>  </start><br><br>  <start name="lx_fs"><br>    <resource name="RAM" quantum="4M" /><br>    <provides> <service name="File_system" /> </provides><br>    <config> <policy label="fs_rom" root="/" writable="no" /> </config><br>  </start><br><br></div>Thanks!<br></div>