mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +00:00
f6eed42208
prepare_thumb_drive: default to creating 10% LUKS container on usb drive, prompts for passphrase is not provided and scan drives if no --device specified NOTE: qemu usb_thumb drive of 128 mb are not big enough so that 10% of it (12mb) can be used to create thumb drive. Adds: - e2fsprogs to support ext4 filesystem creation through mke2fs - add /etc/mke2fs.conf so that mke2fs knows how to handle ext2/ext3/ext4 - removes mke2fs support from busybox - bump busybox to latest version which adds cpu accelerated hash functions (not needed per se here) - Adds exfatprogs to have mkfs.exfat and fsck.exfat - Adds prepare_thumb_drive /etc/luks-functions to be able to prepare a thumb drive with percentage of drive assigned to LUKS, rest to exfat - Modify most board configs to test space requirements failing - Talos2 linux config: add staging Exfat support - Make e2fsprogs and exfatprogs included by default unless explicitely deactivate in board configs - Change cryptsetup calls : luksOpen to open and luksClose to close to addresss review - etc/luks_functions: cleanup GOAL here is to have secure thumb drive creation which Heads will be able to use to backup/restore/use generated GPG key material in the future (next PR)
13 lines
501 B
Diff
13 lines
501 B
Diff
diff -u --recursive clean/busybox-1.33.2/libbb/messages.c busybox-1.33.2/libbb/messages.c
|
|
--- clean/busybox-1.33.2/libbb/messages.c 2017-10-20 04:36:58.000000000 -0400
|
|
+++ busybox-1.33.2/libbb/messages.c 2018-02-09 12:02:45.918726483 -0500
|
|
@@ -13,7 +13,7 @@
|
|
|
|
/* allow version to be extended, via CFLAGS */
|
|
#ifndef BB_EXTRA_VERSION
|
|
-#define BB_EXTRA_VERSION " ("AUTOCONF_TIMESTAMP")"
|
|
+#define BB_EXTRA_VERSION " (heads)"
|
|
#endif
|
|
|
|
const char bb_banner[] ALIGN1 = "BusyBox v" BB_VER BB_EXTRA_VERSION;
|