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
#!/bin/bash | |
# source: https://github.com/guilhermechapiewski/git2svn | |
BASE_DIR=`pwd` | |
GIT_DIR="/Users/gc/Temp/git_repo" | |
SVN_DIR="/Users/gc/Temp/svn_repo" | |
# The SVN_AUTH variable can be used in case you need credentials to commit | |
#SVN_AUTH="--username [email protected] --password XPTO" | |
SVN_AUTH="" |
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
#=============================================================================== | |
# Description: kernel module Makefile Template | |
#=============================================================================== | |
#=============================================================================== | |
# Project VARS | |
#=============================================================================== | |
PWD := $(shell pwd) | |
KVERSION := $(shell uname -r) | |
KERNEL_DIR := /usr/src/linux-headers-$(KVERSION)/ |
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
//============================================================================== | |
/* | |
File Name: xxx.c | |
Created: 202X// | |
Author: | |
Description: | |
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
#=============================================================================== | |
# Description: C Project Makefile Template | |
# Author: | |
# | |
#=============================================================================== | |
#=============================================================================== | |
# TOOL CHAIN and SHELL TOOL | |
#=============================================================================== | |
CC = gcc | |
LD = $(CC) |