code
stringlengths
0
21.5M
repo_name
stringlengths
4
92
path
stringlengths
1
189
language
stringlengths
0
26
license
stringclasses
11 values
size
int64
0
21.5M
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/cros-ec/cros-ec-helper
none
mit
806
From b98bd2808f4185970781bd4dcca141cbda9b03c6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger <vapier@chromium.org> Date: Mon, 7 Dec 2015 21:46:13 -0500 Subject: [PATCH 1/4] use _DEFAULT_SOURCE for newer glibc Newer versions of glibc have moved to _DEFAULT_SOURCE and away from _BSD_SOURCE. Trying to use the BSD define ...
intermsofthewhole/libreboot
projects/cros-ec/patches/nyan/0001-use-_DEFAULT_SOURCE-for-newer-glibc.patch
patch
mit
1,508
From fd77232c8e9789f5556fc6cc3c694924c1546a41 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Wed, 20 Jul 2016 16:26:32 +0200 Subject: [PATCH 2/4] Enforce compilation without system headers This is based on commit bc404c94b4ab1e6a62e607fd7ef034aa31d6388e (Enforce compilation without system he...
intermsofthewhole/libreboot
projects/cros-ec/patches/nyan/0002-Enforce-compilation-without-system-headers.patch
patch
mit
1,071
From 9d747549141e710c324968636522e57fe4ba9445 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Wed, 20 Jul 2016 16:27:05 +0200 Subject: [PATCH 3/4] Don't declare functions inline that aren't always defined as such This is based on commit 960cf45b3ffe88e842c27145e7e646d63a89c371 (Don't declare...
intermsofthewhole/libreboot
projects/cros-ec/patches/nyan/0003-Don-t-declare-functions-inline-that-aren-t-always-de.patch
patch
mit
784
From f7d7b22a9e711783c99be55b2c1c437a6808f24d Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Sat, 23 Jul 2016 15:51:58 +0200 Subject: [PATCH 4/4] cortex-m: Use assembly exception handler and routine for task switching The way Cortex processors handle exceptions allows writing exception rout...
intermsofthewhole/libreboot
projects/cros-ec/patches/nyan/0004-cortex-m-Use-assembly-exception-handler-and-routine-.patch
patch
mit
8,405
From 35987639080ef4293bffbc1ce21de4d8a35b41db Mon Sep 17 00:00:00 2001 From: Yunlian Jiang <yunlian@google.com> Date: Mon, 20 Apr 2015 09:38:56 -0700 Subject: [PATCH 1/6] ec: fix a clang warning by use a unused variable. This uses the variable 'usage' in an error message to fix a clang warning. BUG=chromium:475960 TE...
intermsofthewhole/libreboot
projects/cros-ec/patches/veyron/0001-ec-fix-a-clang-warning-by-use-a-unused-variable.patch
patch
mit
1,078
From d2f946caf27adf4518cb657da39e296366d0b53f Mon Sep 17 00:00:00 2001 From: Mike Frysinger <vapier@chromium.org> Date: Mon, 7 Dec 2015 21:46:13 -0500 Subject: [PATCH 2/6] use _DEFAULT_SOURCE for newer glibc Newer versions of glibc have moved to _DEFAULT_SOURCE and away from _BSD_SOURCE. Trying to use the BSD define ...
intermsofthewhole/libreboot
projects/cros-ec/patches/veyron/0002-use-_DEFAULT_SOURCE-for-newer-glibc.patch
patch
mit
1,510
From 63bb6f6effbaae9864366588464a7b9354c9a623 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Wed, 20 Jul 2016 16:26:32 +0200 Subject: [PATCH 3/6] Enforce compilation without system headers This is based on commit bc404c94b4ab1e6a62e607fd7ef034aa31d6388e (Enforce compilation without system he...
intermsofthewhole/libreboot
projects/cros-ec/patches/veyron/0003-Enforce-compilation-without-system-headers.patch
patch
mit
1,758
From 3515f1d744cbcdb37471e898277aa6b1ddd3d0ee Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Wed, 20 Jul 2016 16:27:05 +0200 Subject: [PATCH 4/6] Don't declare functions inline that aren't always defined as such This is based on commit 960cf45b3ffe88e842c27145e7e646d63a89c371 (Don't declare...
intermsofthewhole/libreboot
projects/cros-ec/patches/veyron/0004-Don-t-declare-functions-inline-that-aren-t-always-de.patch
patch
mit
784
From 913b2f1265bd7f3ebe6cf4cba92c20c5a423a6c3 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Tue, 2 Aug 2016 12:05:55 +0200 Subject: [PATCH 5/6] Don't include missing and unnecessary math header This removes the inclusion of an unnecessary math header that is neither found nor necessary for ...
intermsofthewhole/libreboot
projects/cros-ec/patches/veyron/0005-Don-t-include-missing-and-unnecessary-math-header.patch
patch
mit
783
From 9dd7ae82d3f3fa9dae31a442365e233a0b44cce3 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Sat, 23 Jul 2016 14:17:32 +0200 Subject: [PATCH 6/6] cortex-m0: Use assembly exception handlers for task switching The way Cortex processors handle exceptions allows writing exception routines direc...
intermsofthewhole/libreboot
projects/cros-ec/patches/veyron/0006-cortex-m0-Use-assembly-exception-handlers-for-task-s.patch
patch
mit
8,013
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/cros-scripts/cros-scripts
none
mit
992
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/cros-scripts/install/cros-boot-keys
none
mit
5,415
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/cros-scripts/install/cros-firmware-prepare
none
mit
7,136
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/cros-scripts/install/cros-kernel-install
none
mit
6,060
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/cros-scripts/install/cros-kernel-prepare
none
mit
4,051
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/cros-scripts/install/cros-medium-setup
none
mit
7,118
cros-boot-keys:cros-boot-keys cros-firmware-prepare:cros-firmware-prepare cros-kernel-install:cros-kernel-install cros-kernel-prepare:cros-kernel-prepare cros-medium-setup:cros-medium-setup
intermsofthewhole/libreboot
projects/cros-scripts/install/install
none
mit
190
cros-scripts cros-ec tools flashrom-cros hdctools vboot tools flashmap mosys vpd
intermsofthewhole/libreboot
projects/cros-tools/configs/projects
none
mit
81
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/cros-tools/cros-tools
none
mit
1,165
*:.
intermsofthewhole/libreboot
projects/crossgcc/configs/install
none
mit
4
arm
intermsofthewhole/libreboot
projects/crossgcc/configs/targets
none
mit
4
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/crossgcc/crossgcc
none
mit
5,095
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/crossgcc/crossgcc-helper
none
mit
1,609
depthcharge.elf:depthcharge.elf
intermsofthewhole/libreboot
projects/depthcharge/configs/install
none
mit
32
arm
intermsofthewhole/libreboot
projects/depthcharge/configs/nyan/arch
none
mit
4
66b58a339a7fcc79248b9ef7853449542683c45d
intermsofthewhole/libreboot
projects/depthcharge/configs/revision
none
mit
41
nyan veyron
intermsofthewhole/libreboot
projects/depthcharge/configs/targets
none
mit
12
arm
intermsofthewhole/libreboot
projects/depthcharge/configs/veyron/arch
none
mit
4
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/depthcharge/depthcharge
none
mit
2,961
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/depthcharge/depthcharge-helper
none
mit
855
From 3003a569ad63a35922984a8c7d1f079cc5cbd960 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Mon, 10 Aug 2015 20:30:14 +0200 Subject: [PATCH 1/4] fdt: nonvolatile-context-storage report to mkbp for EC NV storage This allows old versions of crossystem to detect that it should use mosys to ac...
intermsofthewhole/libreboot
projects/depthcharge/patches/0001-fdt-nonvolatile-context-storage-report-to-mkbp-for-E.patch
patch
mit
1,223
From fc2f65e964fb9636db35749579c47dde15599f57 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Mon, 10 Aug 2015 20:24:50 +0200 Subject: [PATCH 2/4] Proper firmware index report for read-only boot path When booting from a read-only boot path, the active firmware to report is RO. This is detecte...
intermsofthewhole/libreboot
projects/depthcharge/patches/0002-Proper-firmware-index-report-for-read-only-boot-path.patch
patch
mit
2,343
From 1e634ac65fbdd43f35046e08b302d162e5d964d4 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Tue, 11 Aug 2015 11:22:54 +0200 Subject: [PATCH 3/4] vboot: Display callbacks for all screens We don't want to use bitmaps stored in GBB since they recommend the use of non- free software (Chrome OS)...
intermsofthewhole/libreboot
projects/depthcharge/patches/0003-vboot-Display-callbacks-for-all-screens.patch
patch
mit
6,642
From 925042a09afb9529b112eff2e4d56bf979ff32ec Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Mon, 19 Dec 2016 14:54:40 +0100 Subject: [PATCH 4/4] mmc: Initialize clock variable in mmc_recalculate_clock Initializing the variable before it is used (and set to a proper value) avoids triggering ...
intermsofthewhole/libreboot
projects/depthcharge/patches/0004-mmc-Initialize-clock-variable-in-mmc_recalculate_clo.patch
patch
mit
959
lib/libfmap.a:libfmap.a
intermsofthewhole/libreboot
projects/flashmap/configs/install
none
mit
24
origin/release-R56-9000.B
intermsofthewhole/libreboot
projects/flashmap/configs/revision
none
mit
26
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/flashmap/flashmap
none
mit
2,144
flashrom:flashrom
intermsofthewhole/libreboot
projects/flashrom-cros/configs/install
none
mit
18
origin/release-R56-9000.B
intermsofthewhole/libreboot
projects/flashrom-cros/configs/revision
none
mit
26
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/flashrom-cros/flashrom-cros
none
mit
2,574
From f721cdd46196a99dbcc41f0f7ecaf2ee17a147fe Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Wed, 2 Nov 2016 19:16:50 +0100 Subject: [PATCH] programmer.h: Define ich_generation after enum declaration This moves the ich_generation definition after the declaration of its associated enum. Sign...
intermsofthewhole/libreboot
projects/flashrom-cros/patches/0001-programmer.h-Define-ich_generation-after-enum-declar.patch
patch
mit
1,105
diff --git a/hwaccess.h b/hwaccess.h index 0299ecb..a6732c2 100644 --- a/hwaccess.h +++ b/hwaccess.h @@ -24,11 +24,9 @@ #ifndef __HWACCESS_H__ #define __HWACCESS_H__ 1 -#if defined (__i386__) || defined (__x86_64__) -#if defined(__GLIBC__) +#if defined (__i386__) || defined (__x86_64__) || defined(__arm__) #includ...
intermsofthewhole/libreboot
projects/flashrom-cros/patches/flashrom-arm-20170120-f5c27c4.diff
diff
mit
901
diff --git a/linux_spi.c b/linux_spi.c index 0199cf5..d56e8b0 100644 --- a/linux_spi.c +++ b/linux_spi.c @@ -20,11 +20,12 @@ #include <stdio.h> #include <string.h> #include <stdlib.h> -#include <sys/fcntl.h> +#include <fcntl.h> #include <errno.h> #include <ctype.h> #include <unistd.h> #include <linux/spi/spidev....
intermsofthewhole/libreboot
projects/flashrom-cros/patches/flashrom-fcntl-20170120-702322e.diff
diff
mit
420
diff --git a/fdtmap.h b/fdtmap.h index 68eeef9..fe75291 100644 --- a/fdtmap.h +++ b/fdtmap.h @@ -36,6 +36,12 @@ #ifndef FLASHMAP_LIB_FDTMAP_H__ #define FLASHMAP_LIB_FDTMAP_H__ +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif + +#include <fcntl.h> + #define FDTMAP_SIGNATURE "__FDTM__" struct romlayout; diff --g...
intermsofthewhole/libreboot
projects/flashrom-cros/patches/flashrom-loff_t-20170120-3470be9.diff
diff
mit
597
diff --git a/Makefile b/Makefile index a2f95cf..fcfce9b 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ PKG_CONFIG ?= pkg-config WARNERROR ?= yes ifneq ($(NOWARNERROR),yes) -CFLAGS += -Werror +CFLAGS += endif ifeq ($(CONFIG_STATIC),yes) @@ -354,7 +354,7 @@ CONFIG_BUSPIRATE_SPI ?= no CONFIG_RAIDEN_DEBUG...
intermsofthewhole/libreboot
projects/flashrom-cros/patches/flashrom-makefile-20170120-1139be7.diff
diff
mit
1,250
flashrom:flashrom
intermsofthewhole/libreboot
projects/flashrom/configs/install
none
mit
18
0.9.9
intermsofthewhole/libreboot
projects/flashrom/configs/revision
none
mit
6
generic lenovobios
intermsofthewhole/libreboot
projects/flashrom/configs/targets
none
mit
19
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/flashrom/flashrom
none
mit
2,501
From 52a0b55c77635dc026793e66d516e3aed335706a Mon Sep 17 00:00:00 2001 From: Leah Rowe <info@minifree.org> Date: Fri, 11 Mar 2016 06:35:03 +0000 Subject: [PATCH 1/1] New laptops whitelisted: ThinkPad R400 and ThinkPad T500 Support for these laptops was merged in coreboot a while ago, so it makes sense for flashrom to ...
intermsofthewhole/libreboot
projects/flashrom/patches/0001-New-laptops-whitelisted-ThinkPad-R400-and-ThinkPad-T.patch
patch
mit
2,219
From b1828512abf58911cfb829cb6a98d4e8dbefadc2 Mon Sep 17 00:00:00 2001 From: Leah Rowe <info@minifree.org> Date: Fri, 11 Mar 2016 06:38:39 +0000 Subject: [PATCH 1/1] Add whitelist for Taurinus X200 laptop --- board_enable.c | 1 + 1 file changed, 1 insertion(+) diff --git a/board_enable.c b/board_enable.c index 1d56...
intermsofthewhole/libreboot
projects/flashrom/patches/0002-Add-whitelist-for-Taurinus-X200-laptop.patch
patch
mit
1,712
From 260f0e096b385c9f53e9a28e79293131a11122a6 Mon Sep 17 00:00:00 2001 From: Leah Rowe <info@minifree.org> Date: Fri, 11 Mar 2016 06:50:50 +0000 Subject: [PATCH 1/1] purged chips --- flashchips.c | 303 ----------------------------------------------------------- 1 file changed, 303 deletions(-) diff --git a/flashchi...
intermsofthewhole/libreboot
projects/flashrom/patches/0003-purged-chips.patch
patch
mit
10,190
From aa2dd05f61f6ca91212d7f6d4055486af6e01436 Mon Sep 17 00:00:00 2001 From: Leah Rowe <info@minifree.org> Date: Fri, 5 Aug 2016 22:40:49 +0200 Subject: [PATCH] Lenovobios adaptation for Macronix and SST chips Signed-off-by: Paul Kocialkowski <contact@paulk.fr> --- flashchips.c | 12 ++++++------ 1 file changed, 6 in...
intermsofthewhole/libreboot
projects/flashrom/patches/lenovobios/0001-Lenovobios-adaptation-for-Macronix-and-SST-chips.patch
patch
mit
1,966
lib/libftdigpio.so:libftdigpio.so lib/libftdii2c.so:libftdii2c.so lib/libftdiuart.so:libftdiuart.so servo:servo src/toad/toad:toad usbkm232:usbkm232
intermsofthewhole/libreboot
projects/hdctools/configs/install
none
mit
149
origin/release-R56-9000.B
intermsofthewhole/libreboot
projects/hdctools/configs/revision
none
mit
26
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/hdctools/hdctools
none
mit
2,231
From 05fde50f4991623525edb6b15340011af53cd31e Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Sun, 20 Nov 2016 15:08:39 +0100 Subject: [PATCH] Remove Werror flag Signed-off-by: Paul Kocialkowski <contact@paulk.fr> --- defs/c-Linux.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/defs/c-...
intermsofthewhole/libreboot
projects/hdctools/patches/0001-Remove-Werror-flag.patch
patch
mit
625
arm
intermsofthewhole/libreboot
projects/libpayload/configs/depthcharge/nyan/arch
none
mit
4
config.nyan
intermsofthewhole/libreboot
projects/libpayload/configs/depthcharge/nyan/config
none
mit
12
nyan veyron
intermsofthewhole/libreboot
projects/libpayload/configs/depthcharge/targets
none
mit
12
arm
intermsofthewhole/libreboot
projects/libpayload/configs/depthcharge/veyron/arch
none
mit
4
config.veyron
intermsofthewhole/libreboot
projects/libpayload/configs/depthcharge/veyron/config
none
mit
14
install/libpayload/*:.
intermsofthewhole/libreboot
projects/libpayload/configs/install
none
mit
23
depthcharge
intermsofthewhole/libreboot
projects/libpayload/configs/targets
none
mit
12
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/libpayload/libpayload
none
mit
2,226
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/libpayload/libpayload-helper
none
mit
902
libreboot-tools libreboot-images libreboot-sources libreboot-release
intermsofthewhole/libreboot
projects/libreboot-all/configs/projects
none
mit
69
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/libreboot-all/libreboot-all
none
mit
1,165
coreboot crossgcc vboot devices libpayload depthcharge cros-ec
intermsofthewhole/libreboot
projects/libreboot-images/configs/projects
none
mit
63
coreboot cros-ec
intermsofthewhole/libreboot
projects/libreboot-images/configs/projects-build
none
mit
17
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/libreboot-images/libreboot-images
none
mit
1,165
libreboot-release:libreboot-release
intermsofthewhole/libreboot
projects/libreboot-release/install/install
none
mit
36
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/libreboot-release/install/libreboot-release
none
mit
5,615
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/libreboot-release/libreboot-release
none
mit
1,064
libreboot-sources:libreboot-sources
intermsofthewhole/libreboot
projects/libreboot-sources/install/install
none
mit
36
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/libreboot-sources/install/libreboot-sources
none
mit
3,111
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/libreboot-sources/libreboot-sources
none
mit
1,722
cbfstool cbmem nvramtool cros-tools
intermsofthewhole/libreboot
projects/libreboot-tools/configs/projects
none
mit
36
coreboot cbfstool cbmem nvramtool cros-tools
intermsofthewhole/libreboot
projects/libreboot-tools/configs/projects-download
none
mit
45
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/libreboot-tools/libreboot-tools
none
mit
1,165
mosys:mosys
intermsofthewhole/libreboot
projects/mosys/configs/install
none
mit
12
origin/release-R56-9000.B
intermsofthewhole/libreboot
projects/mosys/configs/revision
none
mit
26
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/mosys/mosys
none
mit
2,681
From f8aa6a0eeaa6ae3fd4dfe2d60118a47a3867c906 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Wed, 10 Feb 2016 20:44:09 +0100 Subject: [PATCH] Force the definition of build tools Signed-off-by: Paul Kocialkowski <contact@paulk.fr> --- Makefile | 20 ++++++++++---------- 1 file changed, 10 in...
intermsofthewhole/libreboot
projects/mosys/patches/0001-Force-the-definition-of-build-tools.patch
patch
mit
1,170
nvramtool:nvramtool
intermsofthewhole/libreboot
projects/nvramtool/configs/install
none
mit
20
#!/bin/bash # Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version....
intermsofthewhole/libreboot
projects/nvramtool/nvramtool
none
mit
2,397
tests/devkeys/firmware_bmpfv.bin tests/devkeys-pkc/firmware_bmpfv.bin tests/futility/data/bios_link_mp.bin tests/futility/data/bios_mario_mp.bin tests/futility/data/bios_peppy_mp.bin tests/futility/data/bios_zgb_mp.bin tests/futility/data/dingdong.signed tests/futility/data/dingdong.unsigned tests/futility/data/fw_gbb....
intermsofthewhole/libreboot
projects/vboot/configs/blobs
none
mit
785
bdb/sha.c bdb/bdb_create.c cgpt/cgpt_wrapper.c firmware/lib/tpm_lite/include/tlcl_structures.h firmware/lib/cgptlib/crc32.c firmware/lib/cryptolib/padding.c firmware/2lib/2sha512.c firmware/2lib/2sha256.c firmware/bdb/secrets.c futility/cmd_gbb_utility.c scripts/image_signing/tag_image.sh scripts/image_signing/strip_bo...
intermsofthewhole/libreboot
projects/vboot/configs/blobs-ignore
none
mit
967
./3rdparty/vboot/tests/testcases/padding_test_vectors.inc It's not a blob, see tests/rsa_padding_test.h for explanation. The text in this file is CC-BY-SA 4.0 or higher. All contributions to it must be made under the same license.
intermsofthewhole/libreboot
projects/vboot/configs/blobs-ignore-notes.txt
Text
mit
232
origin/release-R56-9000.B
intermsofthewhole/libreboot
projects/vboot/configs/revision
none
mit
26
devices tools
intermsofthewhole/libreboot
projects/vboot/configs/targets
none
mit
14
cgpt/cgpt:cgpt futility/futility:futility utility/crossystem:crossystem utility/tpmc:tpmc devkeys:devkeys
intermsofthewhole/libreboot
projects/vboot/configs/tools/install
none
mit
106
From 0e8e89b19a4e47802ed6ea64a35da77665cc3d3f Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Mon, 10 Aug 2015 20:33:23 +0200 Subject: [PATCH 1/7] firmware: Developer mode timeout delay shortening (down to 3 seconds) A timeout delay of 3 seconds, with no bip, is much more appreciable for use...
intermsofthewhole/libreboot
projects/vboot/patches/0001-firmware-Developer-mode-timeout-delay-shortening-dow.patch
patch
mit
1,336
From 5f402b9d365dbc17ea68803aeb9a95da01708b9f Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Mon, 10 Aug 2015 22:44:50 +0200 Subject: [PATCH 2/7] firmware: Text-based screen display in priority This allows showing text-based screen displays before looking at the GBB bitmaps since those encou...
intermsofthewhole/libreboot
projects/vboot/patches/0002-firmware-Text-based-screen-display-in-priority.patch
patch
mit
2,320
From 78297c1fa4a158047e7bfa8bf0b3435fe498811d Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Mon, 10 Aug 2015 22:59:50 +0200 Subject: [PATCH 3/7] firmware: Hold key combination in developer mode This binds the Ctrl + H key combination to hold the developer mode screen. Change-Id: Ia76080eac...
intermsofthewhole/libreboot
projects/vboot/patches/0003-firmware-Hold-key-combination-in-developer-mode.patch
patch
mit
1,561
From 4560df9f84e342ef51cf071dccd01e3fb5838a37 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Mon, 10 Aug 2015 23:13:49 +0200 Subject: [PATCH 4/7] firmware: Screen blank and wait at disabled USB boot warning This blanks the screen before showing the disabled USB boot warning. It also waits f...
intermsofthewhole/libreboot
projects/vboot/patches/0004-firmware-Screen-blank-and-wait-at-disabled-USB-boot-.patch
patch
mit
1,767
From 457f2227845335bed16b190499278a887eca3939 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Mon, 10 Aug 2015 23:53:48 +0200 Subject: [PATCH 5/7] firmware: Separate screen and wait at device information screen This blanks the screen (instead of redrawing it) at device information and waits ...
intermsofthewhole/libreboot
projects/vboot/patches/0005-firmware-Separate-screen-and-wait-at-device-informat.patch
patch
mit
2,717
From 95a6212c5eef956289ab6a70ba0debb89508ce99 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Tue, 11 Aug 2015 00:07:18 +0200 Subject: [PATCH 6/7] firmware: Localization keys removal Since we're using a text-based interface, binding the arrow keys to localization changes has no effect and onl...
intermsofthewhole/libreboot
projects/vboot/patches/0006-firmware-Localization-keys-removal.patch
patch
mit
1,838
From aecef39cda6a70c99bf0caff0452e47ad43a68d8 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski <contact@paulk.fr> Date: Sun, 10 Jul 2016 23:43:16 +0200 Subject: [PATCH 7/7] firmware: Pass VbDisplayInfo information structure to VbExDisplayScreen This provides VbExDisplayScreen with an information structure (VbDisplayI...
intermsofthewhole/libreboot
projects/vboot/patches/0007-firmware-Pass-VbDisplayInfo-information-structure-to.patch
patch
mit
12,951