├── .gitignore ├── Documentation └── Makefile ├── Kconfig ├── Makefile ├── README.md ├── arch └── arm │ ├── Makefile │ ├── common │ ├── Makefile │ ├── bcopy.S │ ├── bzero.S │ ├── linkerscript.lds.S │ ├── start.S │ ├── strchr.S │ ├── strcmp.S │ ├── strlen.S │ ├── strncmp.S │ ├── version.S │ └── version.sh │ ├── plat-am335x │ ├── Makefile │ └── debug.c │ ├── plat-bcm2836 │ ├── Makefile │ ├── debug.c │ └── pl011.h │ ├── plat-hptouchpad │ ├── Makefile │ ├── consolefont.c │ ├── debug.c │ └── fb.c │ ├── plat-htchd2 │ ├── Makefile │ ├── consolefont.c │ ├── debug.c │ └── fb.c │ ├── plat-imx53usbarmory │ ├── Makefile │ ├── debug.c │ └── uart-imx53.h │ ├── plat-omap3 │ ├── Makefile │ └── debug.c │ ├── plat-omap5 │ ├── Makefile │ └── debug.c │ └── plat-realview │ ├── Makefile │ └── debug.c ├── core ├── Makefile ├── device_tree.c ├── image3.c ├── json_parser.c ├── libc_stub.c ├── macho_loader.c ├── malloc.c ├── memory_region.c ├── printf.c ├── tlsf.c ├── version.c └── xml.c ├── images └── Makefile ├── include ├── _ansi.h ├── _syslist.h ├── alloca.h ├── ar.h ├── argz.h ├── asm_help.h ├── assert.h ├── boot_args.h ├── complex.h ├── ctype.h ├── device_tree.h ├── dirent.h ├── envlock.h ├── envz.h ├── errno.h ├── fastmath.h ├── fcntl.h ├── fnmatch.h ├── genboot.h ├── getopt.h ├── glob.h ├── grp.h ├── helper.h ├── iconv.h ├── ieeefp.h ├── image3.h ├── inttypes.h ├── jsmn.h ├── langinfo.h ├── libgen.h ├── limits.h ├── linux_atags.h ├── locale.h ├── machine │ ├── _default_types.h │ ├── _types.h │ ├── ansi.h │ ├── endian.h │ ├── fastmath.h │ ├── ieeefp.h │ ├── malloc.h │ ├── param.h │ ├── setjmp-dj.h │ ├── setjmp.h │ ├── stdlib.h │ ├── termios.h │ ├── time.h │ └── types.h ├── macho.h ├── macho_loader.h ├── malloc.h ├── math.h ├── memory_regions.h ├── newlib.h ├── paths.h ├── printf.h ├── process.h ├── pthread.h ├── pwd.h ├── reent.h ├── regdef.h ├── regex.h ├── sched.h ├── search.h ├── setjmp.h ├── signal.h ├── stdint.h ├── stdio.h ├── stdlib.h ├── string.h ├── strings.h ├── sys │ ├── _default_fcntl.h │ ├── _types.h │ ├── cdefs.h │ ├── config.h │ ├── custom_file.h │ ├── dir.h │ ├── dirent.h │ ├── errno.h │ ├── fcntl.h │ ├── features.h │ ├── file.h │ ├── iconvnls.h │ ├── lock.h │ ├── param.h │ ├── queue.h │ ├── reent.h │ ├── resource.h │ ├── sched.h │ ├── signal.h │ ├── stat.h │ ├── stdio.h │ ├── string.h │ ├── syslimits.h │ ├── time.h │ ├── timeb.h │ ├── times.h │ ├── types.h │ ├── unistd.h │ ├── utime.h │ └── wait.h ├── syslimits.h ├── tar.h ├── termios.h ├── time.h ├── tlsf.h ├── unctrl.h ├── unistd.h ├── utime.h ├── utmp.h ├── wchar.h ├── wctype.h ├── wordexp.h └── xml.h ├── init ├── Makefile ├── bootx.c └── main.c └── scripts ├── .gitignore ├── Kbuild.include ├── Lindent ├── Makefile ├── Makefile.asm-generic ├── Makefile.build ├── Makefile.clean ├── Makefile.fwinst ├── Makefile.headersinst ├── Makefile.help ├── Makefile.host ├── Makefile.lib ├── Makefile.modbuiltin ├── Makefile.modinst ├── Makefile.modpost ├── Makefile.modsign ├── asn1_compiler.c ├── basic ├── .gitignore ├── Makefile └── fixdep.c ├── bin2c.c ├── bloat-o-meter ├── bootgraph.pl ├── checkincludes.pl ├── checkkconfigsymbols.sh ├── checkpatch.pl ├── checkstack.pl ├── checksyscalls.sh ├── checkversion.pl ├── cleanfile ├── cleanpatch ├── coccicheck ├── coccinelle ├── api │ ├── alloc │ │ ├── drop_kmalloc_cast.cocci │ │ └── kzalloc-simple.cocci │ ├── d_find_alias.cocci │ ├── devm_ioremap_resource.cocci │ ├── err_cast.cocci │ ├── kstrdup.cocci │ ├── memdup.cocci │ ├── memdup_user.cocci │ ├── ptr_ret.cocci │ ├── resource_size.cocci │ └── simple_open.cocci ├── free │ ├── clk_put.cocci │ ├── devm_free.cocci │ ├── iounmap.cocci │ ├── kfree.cocci │ ├── kfreeaddr.cocci │ └── pci_free_consistent.cocci ├── iterators │ ├── fen.cocci │ ├── itnull.cocci │ ├── list_entry_update.cocci │ └── use_after_iter.cocci ├── locks │ ├── call_kern.cocci │ ├── double_lock.cocci │ ├── flags.cocci │ └── mini_lock.cocci ├── misc │ ├── boolinit.cocci │ ├── boolreturn.cocci │ ├── cstptr.cocci │ ├── doubleinit.cocci │ ├── ifaddr.cocci │ ├── ifcol.cocci │ ├── irqf_oneshot.cocci │ ├── memcpy-assign.cocci │ ├── noderef.cocci │ ├── orplus.cocci │ ├── semicolon.cocci │ └── warn.cocci ├── null │ ├── badzero.cocci │ ├── deref_null.cocci │ ├── eno.cocci │ └── kmerr.cocci └── tests │ ├── doublebitand.cocci │ ├── doubletest.cocci │ └── odd_ptr_err.cocci ├── config ├── conmakehash.c ├── decodecode ├── depmod.sh ├── diffconfig ├── docproc.c ├── dtc ├── .gitignore ├── Makefile ├── Makefile.dtc ├── checks.c ├── data.c ├── dtc-lexer.l ├── dtc-lexer.lex.c_shipped ├── dtc-parser.tab.c_shipped ├── dtc-parser.tab.h_shipped ├── dtc-parser.y ├── dtc.c ├── dtc.h ├── fdtdump.c ├── fdtget.c ├── fdtput.c ├── flattree.c ├── fstree.c ├── libfdt │ ├── Makefile.libfdt │ ├── fdt.c │ ├── fdt.h │ ├── fdt_empty_tree.c │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── libfdt.h │ ├── libfdt_env.h │ └── libfdt_internal.h ├── livetree.c ├── srcpos.c ├── srcpos.h ├── treesource.c ├── util.c ├── util.h └── version_gen.h ├── export_report.pl ├── extract-ikconfig ├── extract-vmlinux ├── gcc-goto.sh ├── gcc-version.sh ├── gcc-x86_32-has-stack-protector.sh ├── gcc-x86_64-has-stack-protector.sh ├── gen_initramfs_list.sh ├── genksyms ├── .gitignore ├── Makefile ├── genksyms.c ├── genksyms.h ├── keywords.gperf ├── keywords.hash.c_shipped ├── lex.l ├── lex.lex.c_shipped ├── parse.tab.c_shipped ├── parse.tab.h_shipped └── parse.y ├── get_maintainer.pl ├── gfp-translate ├── headerdep.pl ├── headers.sh ├── headers_check.pl ├── headers_install.sh ├── kallsyms.c ├── kconfig ├── .gitignore ├── Makefile ├── POTFILES.in ├── check.sh ├── conf.c ├── confdata.c ├── expr.c ├── expr.h ├── gconf.c ├── gconf.glade ├── images.c ├── kxgettext.c ├── list.h ├── lkc.h ├── lkc_proto.h ├── lxdialog │ ├── .gitignore │ ├── BIG.FAT.WARNING │ ├── check-lxdialog.sh │ ├── checklist.c │ ├── dialog.h │ ├── inputbox.c │ ├── menubox.c │ ├── textbox.c │ ├── util.c │ └── yesno.c ├── mconf.c ├── menu.c ├── merge_config.sh ├── nconf.c ├── nconf.gui.c ├── nconf.h ├── qconf.cc ├── qconf.h ├── streamline_config.pl ├── symbol.c ├── util.c ├── zconf.gperf ├── zconf.hash.c_shipped ├── zconf.l ├── zconf.lex.c_shipped ├── zconf.tab.c_shipped └── zconf.y ├── kernel-doc ├── ksymoops └── README ├── link-vmlinux.sh ├── makelst ├── markup_oops.pl ├── mkcompile_h ├── mkmakefile ├── mksysmap ├── mkuboot.sh ├── mkversion ├── mod └── Makefile ├── module-common.lds ├── namespace.pl ├── package ├── Makefile ├── builddeb ├── buildtar └── mkspec ├── patch-kernel ├── pnmtologo.c ├── profile2linkerlist.pl ├── recordmcount.c ├── recordmcount.h ├── recordmcount.pl ├── rt-tester ├── check-all.sh ├── rt-tester.py ├── t2-l1-2rt-sameprio.tst ├── t2-l1-pi.tst ├── t2-l1-signal.tst ├── t2-l2-2rt-deadlock.tst ├── t3-l1-pi-1rt.tst ├── t3-l1-pi-2rt.tst ├── t3-l1-pi-3rt.tst ├── t3-l1-pi-signal.tst ├── t3-l1-pi-steal.tst ├── t3-l2-pi.tst ├── t4-l2-pi-deboost.tst ├── t5-l4-pi-boost-deboost-setsched.tst └── t5-l4-pi-boost-deboost.tst ├── selinux ├── Makefile ├── README ├── genheaders │ ├── .gitignore │ ├── Makefile │ └── genheaders.c ├── install_policy.sh └── mdp │ ├── .gitignore │ ├── Makefile │ ├── dbus_contexts │ └── mdp.c ├── setlocalversion ├── show_delta ├── sign-file ├── sortextable.c ├── sortextable.h ├── tags.sh ├── tracing └── draw_functrace.py ├── unifdef.c ├── ver_linux └── xz_wrap.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/Kconfig -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/README.md -------------------------------------------------------------------------------- /arch/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/Makefile -------------------------------------------------------------------------------- /arch/arm/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/common/Makefile -------------------------------------------------------------------------------- /arch/arm/common/bcopy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/common/bcopy.S -------------------------------------------------------------------------------- /arch/arm/common/bzero.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/common/bzero.S -------------------------------------------------------------------------------- /arch/arm/common/linkerscript.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/common/linkerscript.lds.S -------------------------------------------------------------------------------- /arch/arm/common/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/common/start.S -------------------------------------------------------------------------------- /arch/arm/common/strchr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/common/strchr.S -------------------------------------------------------------------------------- /arch/arm/common/strcmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/common/strcmp.S -------------------------------------------------------------------------------- /arch/arm/common/strlen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/common/strlen.S -------------------------------------------------------------------------------- /arch/arm/common/strncmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/common/strncmp.S -------------------------------------------------------------------------------- /arch/arm/common/version.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/common/version.S -------------------------------------------------------------------------------- /arch/arm/common/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/common/version.sh -------------------------------------------------------------------------------- /arch/arm/plat-am335x/Makefile: -------------------------------------------------------------------------------- 1 | obj-y = debug.o -------------------------------------------------------------------------------- /arch/arm/plat-am335x/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-am335x/debug.c -------------------------------------------------------------------------------- /arch/arm/plat-bcm2836/Makefile: -------------------------------------------------------------------------------- 1 | obj-y = debug.o -------------------------------------------------------------------------------- /arch/arm/plat-bcm2836/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-bcm2836/debug.c -------------------------------------------------------------------------------- /arch/arm/plat-bcm2836/pl011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-bcm2836/pl011.h -------------------------------------------------------------------------------- /arch/arm/plat-hptouchpad/Makefile: -------------------------------------------------------------------------------- 1 | obj-y = debug.o fb.o -------------------------------------------------------------------------------- /arch/arm/plat-hptouchpad/consolefont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-hptouchpad/consolefont.c -------------------------------------------------------------------------------- /arch/arm/plat-hptouchpad/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-hptouchpad/debug.c -------------------------------------------------------------------------------- /arch/arm/plat-hptouchpad/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-hptouchpad/fb.c -------------------------------------------------------------------------------- /arch/arm/plat-htchd2/Makefile: -------------------------------------------------------------------------------- 1 | obj-y = debug.o fb.o -------------------------------------------------------------------------------- /arch/arm/plat-htchd2/consolefont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-htchd2/consolefont.c -------------------------------------------------------------------------------- /arch/arm/plat-htchd2/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-htchd2/debug.c -------------------------------------------------------------------------------- /arch/arm/plat-htchd2/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-htchd2/fb.c -------------------------------------------------------------------------------- /arch/arm/plat-imx53usbarmory/Makefile: -------------------------------------------------------------------------------- 1 | obj-y = debug.o -------------------------------------------------------------------------------- /arch/arm/plat-imx53usbarmory/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-imx53usbarmory/debug.c -------------------------------------------------------------------------------- /arch/arm/plat-imx53usbarmory/uart-imx53.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-imx53usbarmory/uart-imx53.h -------------------------------------------------------------------------------- /arch/arm/plat-omap3/Makefile: -------------------------------------------------------------------------------- 1 | obj-y = debug.o -------------------------------------------------------------------------------- /arch/arm/plat-omap3/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-omap3/debug.c -------------------------------------------------------------------------------- /arch/arm/plat-omap5/Makefile: -------------------------------------------------------------------------------- 1 | obj-y = debug.o -------------------------------------------------------------------------------- /arch/arm/plat-omap5/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-omap5/debug.c -------------------------------------------------------------------------------- /arch/arm/plat-realview/Makefile: -------------------------------------------------------------------------------- 1 | obj-y = debug.o -------------------------------------------------------------------------------- /arch/arm/plat-realview/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/arch/arm/plat-realview/debug.c -------------------------------------------------------------------------------- /core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/core/Makefile -------------------------------------------------------------------------------- /core/device_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/core/device_tree.c -------------------------------------------------------------------------------- /core/image3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/core/image3.c -------------------------------------------------------------------------------- /core/json_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/core/json_parser.c -------------------------------------------------------------------------------- /core/libc_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/core/libc_stub.c -------------------------------------------------------------------------------- /core/macho_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/core/macho_loader.c -------------------------------------------------------------------------------- /core/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/core/malloc.c -------------------------------------------------------------------------------- /core/memory_region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/core/memory_region.c -------------------------------------------------------------------------------- /core/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/core/printf.c -------------------------------------------------------------------------------- /core/tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/core/tlsf.c -------------------------------------------------------------------------------- /core/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/core/version.c -------------------------------------------------------------------------------- /core/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/core/xml.c -------------------------------------------------------------------------------- /images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/images/Makefile -------------------------------------------------------------------------------- /include/_ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/_ansi.h -------------------------------------------------------------------------------- /include/_syslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/_syslist.h -------------------------------------------------------------------------------- /include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/alloca.h -------------------------------------------------------------------------------- /include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/ar.h -------------------------------------------------------------------------------- /include/argz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/argz.h -------------------------------------------------------------------------------- /include/asm_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/asm_help.h -------------------------------------------------------------------------------- /include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/assert.h -------------------------------------------------------------------------------- /include/boot_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/boot_args.h -------------------------------------------------------------------------------- /include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/complex.h -------------------------------------------------------------------------------- /include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/ctype.h -------------------------------------------------------------------------------- /include/device_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/device_tree.h -------------------------------------------------------------------------------- /include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/dirent.h -------------------------------------------------------------------------------- /include/envlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/envlock.h -------------------------------------------------------------------------------- /include/envz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/envz.h -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/errno.h -------------------------------------------------------------------------------- /include/fastmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/fastmath.h -------------------------------------------------------------------------------- /include/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/fnmatch.h -------------------------------------------------------------------------------- /include/genboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/genboot.h -------------------------------------------------------------------------------- /include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/getopt.h -------------------------------------------------------------------------------- /include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/glob.h -------------------------------------------------------------------------------- /include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/grp.h -------------------------------------------------------------------------------- /include/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/helper.h -------------------------------------------------------------------------------- /include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/iconv.h -------------------------------------------------------------------------------- /include/ieeefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/ieeefp.h -------------------------------------------------------------------------------- /include/image3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/image3.h -------------------------------------------------------------------------------- /include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/inttypes.h -------------------------------------------------------------------------------- /include/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/jsmn.h -------------------------------------------------------------------------------- /include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/langinfo.h -------------------------------------------------------------------------------- /include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/libgen.h -------------------------------------------------------------------------------- /include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/limits.h -------------------------------------------------------------------------------- /include/linux_atags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/linux_atags.h -------------------------------------------------------------------------------- /include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/locale.h -------------------------------------------------------------------------------- /include/machine/_default_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/machine/_default_types.h -------------------------------------------------------------------------------- /include/machine/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/machine/_types.h -------------------------------------------------------------------------------- /include/machine/ansi.h: -------------------------------------------------------------------------------- 1 | /* dummy header file to support BSD compiler */ 2 | -------------------------------------------------------------------------------- /include/machine/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/machine/endian.h -------------------------------------------------------------------------------- /include/machine/fastmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/machine/fastmath.h -------------------------------------------------------------------------------- /include/machine/ieeefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/machine/ieeefp.h -------------------------------------------------------------------------------- /include/machine/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/machine/malloc.h -------------------------------------------------------------------------------- /include/machine/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/machine/param.h -------------------------------------------------------------------------------- /include/machine/setjmp-dj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/machine/setjmp-dj.h -------------------------------------------------------------------------------- /include/machine/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/machine/setjmp.h -------------------------------------------------------------------------------- /include/machine/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/machine/stdlib.h -------------------------------------------------------------------------------- /include/machine/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/machine/termios.h -------------------------------------------------------------------------------- /include/machine/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/machine/time.h -------------------------------------------------------------------------------- /include/machine/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/machine/types.h -------------------------------------------------------------------------------- /include/macho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/macho.h -------------------------------------------------------------------------------- /include/macho_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/macho_loader.h -------------------------------------------------------------------------------- /include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/malloc.h -------------------------------------------------------------------------------- /include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/math.h -------------------------------------------------------------------------------- /include/memory_regions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/memory_regions.h -------------------------------------------------------------------------------- /include/newlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/newlib.h -------------------------------------------------------------------------------- /include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/paths.h -------------------------------------------------------------------------------- /include/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/printf.h -------------------------------------------------------------------------------- /include/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/process.h -------------------------------------------------------------------------------- /include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/pthread.h -------------------------------------------------------------------------------- /include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/pwd.h -------------------------------------------------------------------------------- /include/reent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/reent.h -------------------------------------------------------------------------------- /include/regdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/regdef.h -------------------------------------------------------------------------------- /include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/regex.h -------------------------------------------------------------------------------- /include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sched.h -------------------------------------------------------------------------------- /include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/search.h -------------------------------------------------------------------------------- /include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/setjmp.h -------------------------------------------------------------------------------- /include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/signal.h -------------------------------------------------------------------------------- /include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/stdint.h -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/string.h -------------------------------------------------------------------------------- /include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/strings.h -------------------------------------------------------------------------------- /include/sys/_default_fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/_default_fcntl.h -------------------------------------------------------------------------------- /include/sys/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/_types.h -------------------------------------------------------------------------------- /include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/cdefs.h -------------------------------------------------------------------------------- /include/sys/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/config.h -------------------------------------------------------------------------------- /include/sys/custom_file.h: -------------------------------------------------------------------------------- 1 | #error System-specific custom_file.h is missing. 2 | 3 | -------------------------------------------------------------------------------- /include/sys/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/dir.h -------------------------------------------------------------------------------- /include/sys/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/dirent.h -------------------------------------------------------------------------------- /include/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/errno.h -------------------------------------------------------------------------------- /include/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/fcntl.h -------------------------------------------------------------------------------- /include/sys/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/features.h -------------------------------------------------------------------------------- /include/sys/file.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | -------------------------------------------------------------------------------- /include/sys/iconvnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/iconvnls.h -------------------------------------------------------------------------------- /include/sys/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/lock.h -------------------------------------------------------------------------------- /include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/param.h -------------------------------------------------------------------------------- /include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/queue.h -------------------------------------------------------------------------------- /include/sys/reent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/reent.h -------------------------------------------------------------------------------- /include/sys/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/resource.h -------------------------------------------------------------------------------- /include/sys/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/sched.h -------------------------------------------------------------------------------- /include/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/signal.h -------------------------------------------------------------------------------- /include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/stat.h -------------------------------------------------------------------------------- /include/sys/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/stdio.h -------------------------------------------------------------------------------- /include/sys/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/string.h -------------------------------------------------------------------------------- /include/sys/syslimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/syslimits.h -------------------------------------------------------------------------------- /include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/time.h -------------------------------------------------------------------------------- /include/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/timeb.h -------------------------------------------------------------------------------- /include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/times.h -------------------------------------------------------------------------------- /include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/types.h -------------------------------------------------------------------------------- /include/sys/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/unistd.h -------------------------------------------------------------------------------- /include/sys/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/utime.h -------------------------------------------------------------------------------- /include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/sys/wait.h -------------------------------------------------------------------------------- /include/syslimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/syslimits.h -------------------------------------------------------------------------------- /include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/tar.h -------------------------------------------------------------------------------- /include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/termios.h -------------------------------------------------------------------------------- /include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/time.h -------------------------------------------------------------------------------- /include/tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/tlsf.h -------------------------------------------------------------------------------- /include/unctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/unctrl.h -------------------------------------------------------------------------------- /include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/unistd.h -------------------------------------------------------------------------------- /include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/utime.h -------------------------------------------------------------------------------- /include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/utmp.h -------------------------------------------------------------------------------- /include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/wchar.h -------------------------------------------------------------------------------- /include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/wctype.h -------------------------------------------------------------------------------- /include/wordexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/wordexp.h -------------------------------------------------------------------------------- /include/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/include/xml.h -------------------------------------------------------------------------------- /init/Makefile: -------------------------------------------------------------------------------- 1 | obj-y = bootx.o main.o 2 | -------------------------------------------------------------------------------- /init/bootx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/init/bootx.c -------------------------------------------------------------------------------- /init/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/init/main.c -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/.gitignore -------------------------------------------------------------------------------- /scripts/Kbuild.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Kbuild.include -------------------------------------------------------------------------------- /scripts/Lindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Lindent -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Makefile -------------------------------------------------------------------------------- /scripts/Makefile.asm-generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Makefile.asm-generic -------------------------------------------------------------------------------- /scripts/Makefile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Makefile.build -------------------------------------------------------------------------------- /scripts/Makefile.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Makefile.clean -------------------------------------------------------------------------------- /scripts/Makefile.fwinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Makefile.fwinst -------------------------------------------------------------------------------- /scripts/Makefile.headersinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Makefile.headersinst -------------------------------------------------------------------------------- /scripts/Makefile.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Makefile.help -------------------------------------------------------------------------------- /scripts/Makefile.host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Makefile.host -------------------------------------------------------------------------------- /scripts/Makefile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Makefile.lib -------------------------------------------------------------------------------- /scripts/Makefile.modbuiltin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Makefile.modbuiltin -------------------------------------------------------------------------------- /scripts/Makefile.modinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Makefile.modinst -------------------------------------------------------------------------------- /scripts/Makefile.modpost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Makefile.modpost -------------------------------------------------------------------------------- /scripts/Makefile.modsign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/Makefile.modsign -------------------------------------------------------------------------------- /scripts/asn1_compiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/asn1_compiler.c -------------------------------------------------------------------------------- /scripts/basic/.gitignore: -------------------------------------------------------------------------------- 1 | fixdep 2 | -------------------------------------------------------------------------------- /scripts/basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/basic/Makefile -------------------------------------------------------------------------------- /scripts/basic/fixdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/basic/fixdep.c -------------------------------------------------------------------------------- /scripts/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/bin2c.c -------------------------------------------------------------------------------- /scripts/bloat-o-meter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/bloat-o-meter -------------------------------------------------------------------------------- /scripts/bootgraph.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/bootgraph.pl -------------------------------------------------------------------------------- /scripts/checkincludes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/checkincludes.pl -------------------------------------------------------------------------------- /scripts/checkkconfigsymbols.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/checkkconfigsymbols.sh -------------------------------------------------------------------------------- /scripts/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/checkpatch.pl -------------------------------------------------------------------------------- /scripts/checkstack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/checkstack.pl -------------------------------------------------------------------------------- /scripts/checksyscalls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/checksyscalls.sh -------------------------------------------------------------------------------- /scripts/checkversion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/checkversion.pl -------------------------------------------------------------------------------- /scripts/cleanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/cleanfile -------------------------------------------------------------------------------- /scripts/cleanpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/cleanpatch -------------------------------------------------------------------------------- /scripts/coccicheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccicheck -------------------------------------------------------------------------------- /scripts/coccinelle/api/alloc/drop_kmalloc_cast.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/api/alloc/drop_kmalloc_cast.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/api/alloc/kzalloc-simple.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/api/alloc/kzalloc-simple.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/api/d_find_alias.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/api/d_find_alias.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/api/devm_ioremap_resource.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/api/devm_ioremap_resource.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/api/err_cast.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/api/err_cast.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/api/kstrdup.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/api/kstrdup.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/api/memdup.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/api/memdup.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/api/memdup_user.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/api/memdup_user.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/api/ptr_ret.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/api/ptr_ret.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/api/resource_size.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/api/resource_size.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/api/simple_open.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/api/simple_open.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/free/clk_put.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/free/clk_put.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/free/devm_free.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/free/devm_free.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/free/iounmap.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/free/iounmap.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/free/kfree.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/free/kfree.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/free/kfreeaddr.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/free/kfreeaddr.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/free/pci_free_consistent.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/free/pci_free_consistent.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/iterators/fen.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/iterators/fen.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/iterators/itnull.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/iterators/itnull.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/iterators/list_entry_update.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/iterators/list_entry_update.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/iterators/use_after_iter.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/iterators/use_after_iter.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/locks/call_kern.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/locks/call_kern.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/locks/double_lock.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/locks/double_lock.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/locks/flags.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/locks/flags.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/locks/mini_lock.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/locks/mini_lock.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/misc/boolinit.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/misc/boolinit.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/misc/boolreturn.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/misc/boolreturn.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/misc/cstptr.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/misc/cstptr.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/misc/doubleinit.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/misc/doubleinit.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/misc/ifaddr.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/misc/ifaddr.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/misc/ifcol.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/misc/ifcol.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/misc/irqf_oneshot.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/misc/irqf_oneshot.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/misc/memcpy-assign.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/misc/memcpy-assign.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/misc/noderef.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/misc/noderef.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/misc/orplus.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/misc/orplus.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/misc/semicolon.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/misc/semicolon.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/misc/warn.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/misc/warn.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/null/badzero.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/null/badzero.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/null/deref_null.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/null/deref_null.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/null/eno.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/null/eno.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/null/kmerr.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/null/kmerr.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/tests/doublebitand.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/tests/doublebitand.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/tests/doubletest.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/tests/doubletest.cocci -------------------------------------------------------------------------------- /scripts/coccinelle/tests/odd_ptr_err.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/coccinelle/tests/odd_ptr_err.cocci -------------------------------------------------------------------------------- /scripts/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/config -------------------------------------------------------------------------------- /scripts/conmakehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/conmakehash.c -------------------------------------------------------------------------------- /scripts/decodecode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/decodecode -------------------------------------------------------------------------------- /scripts/depmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/depmod.sh -------------------------------------------------------------------------------- /scripts/diffconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/diffconfig -------------------------------------------------------------------------------- /scripts/docproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/docproc.c -------------------------------------------------------------------------------- /scripts/dtc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/.gitignore -------------------------------------------------------------------------------- /scripts/dtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/Makefile -------------------------------------------------------------------------------- /scripts/dtc/Makefile.dtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/Makefile.dtc -------------------------------------------------------------------------------- /scripts/dtc/checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/checks.c -------------------------------------------------------------------------------- /scripts/dtc/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/data.c -------------------------------------------------------------------------------- /scripts/dtc/dtc-lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/dtc-lexer.l -------------------------------------------------------------------------------- /scripts/dtc/dtc-lexer.lex.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/dtc-lexer.lex.c_shipped -------------------------------------------------------------------------------- /scripts/dtc/dtc-parser.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/dtc-parser.tab.c_shipped -------------------------------------------------------------------------------- /scripts/dtc/dtc-parser.tab.h_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/dtc-parser.tab.h_shipped -------------------------------------------------------------------------------- /scripts/dtc/dtc-parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/dtc-parser.y -------------------------------------------------------------------------------- /scripts/dtc/dtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/dtc.c -------------------------------------------------------------------------------- /scripts/dtc/dtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/dtc.h -------------------------------------------------------------------------------- /scripts/dtc/fdtdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/fdtdump.c -------------------------------------------------------------------------------- /scripts/dtc/fdtget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/fdtget.c -------------------------------------------------------------------------------- /scripts/dtc/fdtput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/fdtput.c -------------------------------------------------------------------------------- /scripts/dtc/flattree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/flattree.c -------------------------------------------------------------------------------- /scripts/dtc/fstree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/fstree.c -------------------------------------------------------------------------------- /scripts/dtc/libfdt/Makefile.libfdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/libfdt/Makefile.libfdt -------------------------------------------------------------------------------- /scripts/dtc/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/libfdt/fdt.c -------------------------------------------------------------------------------- /scripts/dtc/libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/libfdt/fdt.h -------------------------------------------------------------------------------- /scripts/dtc/libfdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/libfdt/fdt_empty_tree.c -------------------------------------------------------------------------------- /scripts/dtc/libfdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/libfdt/fdt_ro.c -------------------------------------------------------------------------------- /scripts/dtc/libfdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/libfdt/fdt_rw.c -------------------------------------------------------------------------------- /scripts/dtc/libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/libfdt/fdt_strerror.c -------------------------------------------------------------------------------- /scripts/dtc/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/libfdt/fdt_sw.c -------------------------------------------------------------------------------- /scripts/dtc/libfdt/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/libfdt/fdt_wip.c -------------------------------------------------------------------------------- /scripts/dtc/libfdt/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/libfdt/libfdt.h -------------------------------------------------------------------------------- /scripts/dtc/libfdt/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/libfdt/libfdt_env.h -------------------------------------------------------------------------------- /scripts/dtc/libfdt/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/libfdt/libfdt_internal.h -------------------------------------------------------------------------------- /scripts/dtc/livetree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/livetree.c -------------------------------------------------------------------------------- /scripts/dtc/srcpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/srcpos.c -------------------------------------------------------------------------------- /scripts/dtc/srcpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/srcpos.h -------------------------------------------------------------------------------- /scripts/dtc/treesource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/treesource.c -------------------------------------------------------------------------------- /scripts/dtc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/util.c -------------------------------------------------------------------------------- /scripts/dtc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/dtc/util.h -------------------------------------------------------------------------------- /scripts/dtc/version_gen.h: -------------------------------------------------------------------------------- 1 | #define DTC_VERSION "DTC 1.2.0-g37c0b6a0" 2 | -------------------------------------------------------------------------------- /scripts/export_report.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/export_report.pl -------------------------------------------------------------------------------- /scripts/extract-ikconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/extract-ikconfig -------------------------------------------------------------------------------- /scripts/extract-vmlinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/extract-vmlinux -------------------------------------------------------------------------------- /scripts/gcc-goto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/gcc-goto.sh -------------------------------------------------------------------------------- /scripts/gcc-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/gcc-version.sh -------------------------------------------------------------------------------- /scripts/gcc-x86_32-has-stack-protector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/gcc-x86_32-has-stack-protector.sh -------------------------------------------------------------------------------- /scripts/gcc-x86_64-has-stack-protector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/gcc-x86_64-has-stack-protector.sh -------------------------------------------------------------------------------- /scripts/gen_initramfs_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/gen_initramfs_list.sh -------------------------------------------------------------------------------- /scripts/genksyms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/genksyms/.gitignore -------------------------------------------------------------------------------- /scripts/genksyms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/genksyms/Makefile -------------------------------------------------------------------------------- /scripts/genksyms/genksyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/genksyms/genksyms.c -------------------------------------------------------------------------------- /scripts/genksyms/genksyms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/genksyms/genksyms.h -------------------------------------------------------------------------------- /scripts/genksyms/keywords.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/genksyms/keywords.gperf -------------------------------------------------------------------------------- /scripts/genksyms/keywords.hash.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/genksyms/keywords.hash.c_shipped -------------------------------------------------------------------------------- /scripts/genksyms/lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/genksyms/lex.l -------------------------------------------------------------------------------- /scripts/genksyms/lex.lex.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/genksyms/lex.lex.c_shipped -------------------------------------------------------------------------------- /scripts/genksyms/parse.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/genksyms/parse.tab.c_shipped -------------------------------------------------------------------------------- /scripts/genksyms/parse.tab.h_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/genksyms/parse.tab.h_shipped -------------------------------------------------------------------------------- /scripts/genksyms/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/genksyms/parse.y -------------------------------------------------------------------------------- /scripts/get_maintainer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/get_maintainer.pl -------------------------------------------------------------------------------- /scripts/gfp-translate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/gfp-translate -------------------------------------------------------------------------------- /scripts/headerdep.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/headerdep.pl -------------------------------------------------------------------------------- /scripts/headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/headers.sh -------------------------------------------------------------------------------- /scripts/headers_check.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/headers_check.pl -------------------------------------------------------------------------------- /scripts/headers_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/headers_install.sh -------------------------------------------------------------------------------- /scripts/kallsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kallsyms.c -------------------------------------------------------------------------------- /scripts/kconfig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/.gitignore -------------------------------------------------------------------------------- /scripts/kconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/Makefile -------------------------------------------------------------------------------- /scripts/kconfig/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/POTFILES.in -------------------------------------------------------------------------------- /scripts/kconfig/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/check.sh -------------------------------------------------------------------------------- /scripts/kconfig/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/conf.c -------------------------------------------------------------------------------- /scripts/kconfig/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/confdata.c -------------------------------------------------------------------------------- /scripts/kconfig/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/expr.c -------------------------------------------------------------------------------- /scripts/kconfig/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/expr.h -------------------------------------------------------------------------------- /scripts/kconfig/gconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/gconf.c -------------------------------------------------------------------------------- /scripts/kconfig/gconf.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/gconf.glade -------------------------------------------------------------------------------- /scripts/kconfig/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/images.c -------------------------------------------------------------------------------- /scripts/kconfig/kxgettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/kxgettext.c -------------------------------------------------------------------------------- /scripts/kconfig/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/list.h -------------------------------------------------------------------------------- /scripts/kconfig/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/lkc.h -------------------------------------------------------------------------------- /scripts/kconfig/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/lkc_proto.h -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/BIG.FAT.WARNING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/lxdialog/BIG.FAT.WARNING -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/check-lxdialog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/lxdialog/check-lxdialog.sh -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/checklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/lxdialog/checklist.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/lxdialog/dialog.h -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/lxdialog/inputbox.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/lxdialog/menubox.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/lxdialog/textbox.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/lxdialog/util.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/lxdialog/yesno.c -------------------------------------------------------------------------------- /scripts/kconfig/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/mconf.c -------------------------------------------------------------------------------- /scripts/kconfig/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/menu.c -------------------------------------------------------------------------------- /scripts/kconfig/merge_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/merge_config.sh -------------------------------------------------------------------------------- /scripts/kconfig/nconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/nconf.c -------------------------------------------------------------------------------- /scripts/kconfig/nconf.gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/nconf.gui.c -------------------------------------------------------------------------------- /scripts/kconfig/nconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/nconf.h -------------------------------------------------------------------------------- /scripts/kconfig/qconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/qconf.cc -------------------------------------------------------------------------------- /scripts/kconfig/qconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/qconf.h -------------------------------------------------------------------------------- /scripts/kconfig/streamline_config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/streamline_config.pl -------------------------------------------------------------------------------- /scripts/kconfig/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/symbol.c -------------------------------------------------------------------------------- /scripts/kconfig/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/util.c -------------------------------------------------------------------------------- /scripts/kconfig/zconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/zconf.gperf -------------------------------------------------------------------------------- /scripts/kconfig/zconf.hash.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/zconf.hash.c_shipped -------------------------------------------------------------------------------- /scripts/kconfig/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/zconf.l -------------------------------------------------------------------------------- /scripts/kconfig/zconf.lex.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/zconf.lex.c_shipped -------------------------------------------------------------------------------- /scripts/kconfig/zconf.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/zconf.tab.c_shipped -------------------------------------------------------------------------------- /scripts/kconfig/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kconfig/zconf.y -------------------------------------------------------------------------------- /scripts/kernel-doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/kernel-doc -------------------------------------------------------------------------------- /scripts/ksymoops/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/ksymoops/README -------------------------------------------------------------------------------- /scripts/link-vmlinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/link-vmlinux.sh -------------------------------------------------------------------------------- /scripts/makelst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/makelst -------------------------------------------------------------------------------- /scripts/markup_oops.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/markup_oops.pl -------------------------------------------------------------------------------- /scripts/mkcompile_h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/mkcompile_h -------------------------------------------------------------------------------- /scripts/mkmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/mkmakefile -------------------------------------------------------------------------------- /scripts/mksysmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/mksysmap -------------------------------------------------------------------------------- /scripts/mkuboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/mkuboot.sh -------------------------------------------------------------------------------- /scripts/mkversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/mkversion -------------------------------------------------------------------------------- /scripts/mod/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/module-common.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/module-common.lds -------------------------------------------------------------------------------- /scripts/namespace.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/namespace.pl -------------------------------------------------------------------------------- /scripts/package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/package/Makefile -------------------------------------------------------------------------------- /scripts/package/builddeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/package/builddeb -------------------------------------------------------------------------------- /scripts/package/buildtar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/package/buildtar -------------------------------------------------------------------------------- /scripts/package/mkspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/package/mkspec -------------------------------------------------------------------------------- /scripts/patch-kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/patch-kernel -------------------------------------------------------------------------------- /scripts/pnmtologo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/pnmtologo.c -------------------------------------------------------------------------------- /scripts/profile2linkerlist.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/profile2linkerlist.pl -------------------------------------------------------------------------------- /scripts/recordmcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/recordmcount.c -------------------------------------------------------------------------------- /scripts/recordmcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/recordmcount.h -------------------------------------------------------------------------------- /scripts/recordmcount.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/recordmcount.pl -------------------------------------------------------------------------------- /scripts/rt-tester/check-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/check-all.sh -------------------------------------------------------------------------------- /scripts/rt-tester/rt-tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/rt-tester.py -------------------------------------------------------------------------------- /scripts/rt-tester/t2-l1-2rt-sameprio.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/t2-l1-2rt-sameprio.tst -------------------------------------------------------------------------------- /scripts/rt-tester/t2-l1-pi.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/t2-l1-pi.tst -------------------------------------------------------------------------------- /scripts/rt-tester/t2-l1-signal.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/t2-l1-signal.tst -------------------------------------------------------------------------------- /scripts/rt-tester/t2-l2-2rt-deadlock.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/t2-l2-2rt-deadlock.tst -------------------------------------------------------------------------------- /scripts/rt-tester/t3-l1-pi-1rt.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/t3-l1-pi-1rt.tst -------------------------------------------------------------------------------- /scripts/rt-tester/t3-l1-pi-2rt.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/t3-l1-pi-2rt.tst -------------------------------------------------------------------------------- /scripts/rt-tester/t3-l1-pi-3rt.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/t3-l1-pi-3rt.tst -------------------------------------------------------------------------------- /scripts/rt-tester/t3-l1-pi-signal.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/t3-l1-pi-signal.tst -------------------------------------------------------------------------------- /scripts/rt-tester/t3-l1-pi-steal.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/t3-l1-pi-steal.tst -------------------------------------------------------------------------------- /scripts/rt-tester/t3-l2-pi.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/t3-l2-pi.tst -------------------------------------------------------------------------------- /scripts/rt-tester/t4-l2-pi-deboost.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/t4-l2-pi-deboost.tst -------------------------------------------------------------------------------- /scripts/rt-tester/t5-l4-pi-boost-deboost-setsched.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/t5-l4-pi-boost-deboost-setsched.tst -------------------------------------------------------------------------------- /scripts/rt-tester/t5-l4-pi-boost-deboost.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/rt-tester/t5-l4-pi-boost-deboost.tst -------------------------------------------------------------------------------- /scripts/selinux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/selinux/Makefile -------------------------------------------------------------------------------- /scripts/selinux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/selinux/README -------------------------------------------------------------------------------- /scripts/selinux/genheaders/.gitignore: -------------------------------------------------------------------------------- 1 | genheaders 2 | -------------------------------------------------------------------------------- /scripts/selinux/genheaders/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/selinux/genheaders/Makefile -------------------------------------------------------------------------------- /scripts/selinux/genheaders/genheaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/selinux/genheaders/genheaders.c -------------------------------------------------------------------------------- /scripts/selinux/install_policy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/selinux/install_policy.sh -------------------------------------------------------------------------------- /scripts/selinux/mdp/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated file 2 | mdp 3 | -------------------------------------------------------------------------------- /scripts/selinux/mdp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/selinux/mdp/Makefile -------------------------------------------------------------------------------- /scripts/selinux/mdp/dbus_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/selinux/mdp/dbus_contexts -------------------------------------------------------------------------------- /scripts/selinux/mdp/mdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/selinux/mdp/mdp.c -------------------------------------------------------------------------------- /scripts/setlocalversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/setlocalversion -------------------------------------------------------------------------------- /scripts/show_delta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/show_delta -------------------------------------------------------------------------------- /scripts/sign-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/sign-file -------------------------------------------------------------------------------- /scripts/sortextable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/sortextable.c -------------------------------------------------------------------------------- /scripts/sortextable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/sortextable.h -------------------------------------------------------------------------------- /scripts/tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/tags.sh -------------------------------------------------------------------------------- /scripts/tracing/draw_functrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/tracing/draw_functrace.py -------------------------------------------------------------------------------- /scripts/unifdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/unifdef.c -------------------------------------------------------------------------------- /scripts/ver_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/ver_linux -------------------------------------------------------------------------------- /scripts/xz_wrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darwin-on-arm/GenericBooter/HEAD/scripts/xz_wrap.sh --------------------------------------------------------------------------------