This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! Custom dark colorscheme | |
! special | |
*.background: #000000 | |
*.foreground: #e5e5e5 | |
*.cursorColor: #a47996 | |
! black | |
*.color0: #000000 | |
*.color8: #666666 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <inttypes.h> | |
#include <stdbool.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <string.h> | |
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0])) | |
static const bool is_ivybridge = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <boot/coreboot_tables.h> | |
#include <device/device.h> | |
#include <device/pci.h> | |
#include <fw_config.h> | |
#include <static.h> | |
#include "cpu/intel/model_206ax/chip.h" | |
#include "northbridge/intel/sandybridge/chip.h" | |
#include "southbridge/intel/bd82x6x/chip.h" | |
#if !DEVTREE_EARLY |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# POSIX-compatible scripts cannot use the non-POSIX | |
# `seq` command or any shell-specific functionality. | |
# This is a helper function to make number lists to | |
# be used in for-loops. This is a reduced subset of | |
# the functionality `seq` provides, but is portable. | |
range() { | |
loopcnt=$1 | |
while [ "$loopcnt" -le "$2" ] |
OlderNewer