Quellcode durchsuchen

multiboot2: fixes: use le_bytes instead of ne_bytes

Philipp Schuster vor 1 Jahr
Ursprung
Commit
2bd535bc42

+ 2 - 2
multiboot2/src/boot_loader_name.rs

@@ -84,8 +84,8 @@ mod tests {
         // size is: 4 bytes for tag + 4 bytes for size + length of null-terminated string
         let size = (4 + 4 + MSG.as_bytes().len() + 1) as u32;
         [
-            &((TagType::BootLoaderName.val()).to_ne_bytes()),
-            &size.to_ne_bytes(),
+            &((TagType::BootLoaderName.val()).to_le_bytes()),
+            &size.to_le_bytes(),
             MSG.as_bytes(),
             // Null Byte
             &[0],

+ 2 - 2
multiboot2/src/command_line.rs

@@ -93,8 +93,8 @@ mod tests {
         // size is: 4 bytes for tag + 4 bytes for size + length of null-terminated string
         let size = (4 + 4 + MSG.as_bytes().len() + 1) as u32;
         [
-            &((TagType::Cmdline.val()).to_ne_bytes()),
-            &size.to_ne_bytes(),
+            &((TagType::Cmdline.val()).to_le_bytes()),
+            &size.to_le_bytes(),
             MSG.as_bytes(),
             // Null Byte
             &[0],

+ 12 - 12
multiboot2/src/lib.rs

@@ -1573,10 +1573,10 @@ mod tests {
             0,
             0,
             0, // end: padding; end of multiboot2 boot information begin
-            CUSTOM_TAG_ID.to_ne_bytes()[0],
-            CUSTOM_TAG_ID.to_ne_bytes()[1],
-            CUSTOM_TAG_ID.to_ne_bytes()[2],
-            CUSTOM_TAG_ID.to_ne_bytes()[3], // end: my custom tag id
+            CUSTOM_TAG_ID.to_le_bytes()[0],
+            CUSTOM_TAG_ID.to_le_bytes()[1],
+            CUSTOM_TAG_ID.to_le_bytes()[2],
+            CUSTOM_TAG_ID.to_le_bytes()[3], // end: my custom tag id
             12,
             0,
             0,
@@ -1649,10 +1649,10 @@ mod tests {
             0,
             0,
             0, // end: padding; end of multiboot2 boot information begin
-            CUSTOM_TAG_ID.to_ne_bytes()[0],
-            CUSTOM_TAG_ID.to_ne_bytes()[1],
-            CUSTOM_TAG_ID.to_ne_bytes()[2],
-            CUSTOM_TAG_ID.to_ne_bytes()[3], // end: my custom tag id
+            CUSTOM_TAG_ID.to_le_bytes()[0],
+            CUSTOM_TAG_ID.to_le_bytes()[1],
+            CUSTOM_TAG_ID.to_le_bytes()[2],
+            CUSTOM_TAG_ID.to_le_bytes()[3], // end: my custom tag id
             14,
             0,
             0,
@@ -1699,10 +1699,10 @@ mod tests {
             0,
             0,
             0, // reserved
-            TagType::Cmdline.val().to_ne_bytes()[0],
-            TagType::Cmdline.val().to_ne_bytes()[1],
-            TagType::Cmdline.val().to_ne_bytes()[2],
-            TagType::Cmdline.val().to_ne_bytes()[3],
+            TagType::Cmdline.val().to_le_bytes()[0],
+            TagType::Cmdline.val().to_le_bytes()[1],
+            TagType::Cmdline.val().to_le_bytes()[2],
+            TagType::Cmdline.val().to_le_bytes()[3],
             13,
             0,
             0,

+ 4 - 4
multiboot2/src/module.rs

@@ -136,10 +136,10 @@ mod tests {
         //          4 bytes mod_start + 4 bytes mod_end
         let size = (4 + 4 + 4 + 4 + MSG.as_bytes().len() + 1) as u32;
         [
-            &((TagType::Module.val()).to_ne_bytes()),
-            &size.to_ne_bytes(),
-            &0_u32.to_ne_bytes(),
-            &0_u32.to_ne_bytes(),
+            &((TagType::Module.val()).to_le_bytes()),
+            &size.to_le_bytes(),
+            &0_u32.to_le_bytes(),
+            &0_u32.to_le_bytes(),
             MSG.as_bytes(),
             // Null Byte
             &[0],

+ 1 - 1
multiboot2/src/smbios.rs

@@ -67,7 +67,7 @@ mod tests {
         // + 6 bytes reserved + the actual tables
         let size = (4 + 4 + 1 + 1 + 6 + tables.len()) as u32;
         let typ: u32 = TagType::Smbios.into();
-        let mut bytes = [typ.to_ne_bytes(), size.to_ne_bytes()].concat();
+        let mut bytes = [typ.to_le_bytes(), size.to_le_bytes()].concat();
         bytes.push(3);
         bytes.push(0);
         bytes.extend([0; 6]);