@@ -37,7 +37,7 @@ struct CacheInputs {
3737 root_size : Option < String > ,
3838
3939 /// Whether to use composefs-native storage
40- composefs_native : bool ,
40+ composefs_backend : bool ,
4141
4242 /// Kernel arguments used during installation
4343 kernel_args : Vec < String > ,
@@ -59,7 +59,7 @@ pub struct DiskImageMetadata {
5959 pub root_size : Option < String > ,
6060
6161 /// Whether to use composefs-native storage
62- pub composefs_native : bool ,
62+ pub composefs_backend : bool ,
6363
6464 /// Kernel arguments used during installation
6565 pub kernel_args : Vec < String > ,
@@ -75,7 +75,7 @@ impl DiskImageMetadata {
7575 image_digest : self . digest . clone ( ) ,
7676 filesystem : self . filesystem . clone ( ) ,
7777 root_size : self . root_size . clone ( ) ,
78- composefs_native : self . composefs_native ,
78+ composefs_backend : self . composefs_backend ,
7979 kernel_args : self . kernel_args . clone ( ) ,
8080 version : self . version ,
8181 } ;
@@ -160,7 +160,7 @@ impl DiskImageMetadata {
160160 filesystem : options. filesystem . clone ( ) ,
161161 root_size : options. root_size . clone ( ) ,
162162 kernel_args : options. karg . clone ( ) ,
163- composefs_native : options. composefs_native ,
163+ composefs_backend : options. composefs_backend ,
164164 }
165165 }
166166}
@@ -291,7 +291,7 @@ mod tests {
291291 filesystem : Some ( "ext4" . to_string ( ) ) ,
292292 root_size : Some ( "20G" . to_string ( ) ) ,
293293 kernel_args : vec ! [ "console=ttyS0" . to_string( ) ] ,
294- composefs_native : false ,
294+ composefs_backend : false ,
295295 version : 1 ,
296296 } ;
297297
0 commit comments