Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/util-linux/volume_id/luks.c

    r3232 r3621  
    1919 */
    2020
     21//kbuild:lib-$(CONFIG_FEATURE_VOLUMEID_LUKS) += luks.o
     22
     23//config:
     24//config:config FEATURE_VOLUMEID_LUKS
     25//config:   bool "luks filesystem"
     26//config:   default y
     27//config:   depends on VOLUMEID
     28//config:   help
     29//config:     TODO
     30//config:
     31
    2132#include "volume_id_internal.h"
    2233
     
    3041#define LUKS_NUMKEYS             8
    3142
    32 static const uint8_t LUKS_MAGIC[] = { 'L','U','K','S', 0xba, 0xbe };
     43static const uint8_t LUKS_MAGIC[] ALIGN1 = { 'L','U','K','S', 0xba, 0xbe };
    3344
    3445struct luks_phdr {
Note: See TracChangeset for help on using the changeset viewer.