View | Details | Raw Unified | Return to bug 213809
Collapse All | Expand All

(-)b/sys/amd64/linux/linux_sysvec.c (-1 / +13 lines)
Lines 921-929 static Elf64_Brandinfo linux_glibc2brandshort = { Link Here
921
	.flags		= BI_CAN_EXEC_DYN | BI_BRAND_NOTE
921
	.flags		= BI_CAN_EXEC_DYN | BI_BRAND_NOTE
922
};
922
};
923
923
924
static Elf64_Brandinfo linux_muslbrand = {
925
	.brand		= ELFOSABI_NONE,
926
	.machine	= EM_X86_64,
927
	.compat_3_brand	= "Linux",
928
	.emul_path	= "/compat/linux",
929
	.interp_path	= "/lib/ld-musl-x86_64.so.1",
930
	.sysvec		= &elf_linux_sysvec,
931
	.interp_newpath	= NULL,
932
	.brand_note	= &linux64_brandnote,
933
	.flags		= BI_CAN_EXEC_DYN | BI_BRAND_NOTE
934
};
935
924
Elf64_Brandinfo *linux_brandlist[] = {
936
Elf64_Brandinfo *linux_brandlist[] = {
925
	&linux_glibc2brand,
937
	&linux_glibc2brand,
926
	&linux_glibc2brandshort,
938
	&linux_glibc2brandshort,
939
	&linux_muslbrand,
927
	NULL
940
	NULL
928
};
941
};
929
942
930
- 

Return to bug 213809