Skip to content

Instantly share code, notes, and snippets.

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#!/bin/bash
except_list=( "riscv-tools" "riscv-linux" )
function submodule_update() {
echo "Submodule updating in " ${PWD} "..."
git submodule init
submodule_list=`git submodule status | sed 's/^ *//g' | cut -f2 -d' '`
@i4kimura
i4kimura / init
Created September 19, 2015 12:01
#
# Cookbook Name:: mips51-tools
# Recipe:: default
#
# Copyright 2015, YOUR_COMPANY_NAME
#
# All rights reserved - Do Not Redistribute
#
execute "update package index" do
@i4kimura
i4kimura / core_portme.c
Created February 4, 2015 15:36
core_portme.c for ZedBoard
/*
File: core_portme.c
*/
/*
Author : Shay Gal-On, EEMBC
Legal : TODO!
*/
#include <stdio.h>
#include <stdlib.h>
#include "coremark.h"
@i4kimura
i4kimura / tmux_configuration
Created January 3, 2015 00:51
.tmux.conf configuration file
# base settings
## disable ESC delay
set -s escape-time 0
# key mappings
## vi binding
set-window-option -g mode-keys vi
## set prefix (^T)
unbind C-b
set -g prefix ^T
@i4kimura
i4kimura / redmine_bitbucket
Last active September 19, 2018 08:24
How to use bitbucket repository on Redmine built by bitnami
* How to add bitbucket repository on Redmine built by bitnami.
Refer: https://community.bitnami.com/t/redmine-problems-syncing-with-bitbucket-repository/20411/7
Refer: https://wiki.bitnami.com/Applications/BitNami_Redmine#How_to_upgrade_Redmine.3f
1. Change configuration of /etc/passwd to operate as daemon user.
<pre>
...
daemon:x:1:1:daemon:/usr/sbin:/bin/bash
...