Skip to content

Commit

Permalink
first init from sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
mangobuge committed Jul 8, 2022
0 parents commit 3d94679
Show file tree
Hide file tree
Showing 2,009 changed files with 553,819 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
tags
#
# NOTE! Don't add files that are generated in specific
# subdirectories here. Add them in the ".gitignore" file
# in that subdirectory instead.
#
# NOTE! Please use 'git ls-files -i --exclude-standard'
# command after changing this file, to see if there are
# any tracked files which get ignored after the change.
#
# Normal rules
#
.*
*.o
*.o.*
*.s
*.so.dbg
*.mod.c
*.i
*.lst
*.symtypes
*.order
*.elf
*.lzma
*.gcno
*.dwo
*.su
*.swo
*.swp

#
# Top-level generic files
#
/tags
/TAGS
/out
/tmp
/.vscode
#
# git files that we don't want to ignore even it they are dot-files
#
!.gitignore
!.gitmodules

# cscope files
cscope.*
ncscope.*

# gnu global files
GPATH
GRTAGS
GSYMS
GTAGS

# id-utils files

*.orig
*~
\#*#

# Kconfig presets
.config
.config.old

12 changes: 12 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[submodule "package"]
path = package
url = https://github.com/mangopi-sbc/tina-package
[submodule "lichee/brandy-2.0/spl-pub"]
path = lichee/brandy-2.0/spl-pub
url = https://github.com/mangopi-sbc/tina-spl-pub
[submodule "lichee/brandy-2.0/u-boot-2018"]
path = lichee/brandy-2.0/u-boot-2018
url = https://github.com/mangopi-sbc/tina-u-boot-2018
[submodule "lichee/linux-5.4"]
path = lichee/linux-5.4
url = https://github.com/mangopi-sbc/tina-linux-5.4
37 changes: 37 additions & 0 deletions Config.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright (C) 2006-2013 OpenWrt.org
# Copyright (C) 2016-2016 tracewong
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

mainmenu "Tina Configuration"

config MODULES
option modules
bool
default y

config HAVE_DOT_CONFIG
bool
default y

source "target/Config.in"

source "config/Config-images.in"

source "config/Config-build.in"

source "config/Config-systeminit.in"

source "config/Config-devel.in"

source "toolchain/Config.in"

source "target/imagebuilder/Config.in"

source "target/sdk/Config.in"

source "target/toolchain/Config.in"

source "tmp/.config-package.in"
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### DO NOT EDIT THIS FILE ###
include build/main.mk
### DO NOT EDIT THIS FILE ###
78 changes: 78 additions & 0 deletions build/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
#
# NOTE! Don't add files that are generated in specific
# subdirectories here. Add them in the ".gitignore" file
# in that subdirectory instead.
#
# NOTE! Please use 'git ls-files -i --exclude-standard'
# command after changing this file, to see if there are
# any tracked files which get ignored after the change.
#
# Normal rules
#
.*
*.o
*.o.*
*.s
*.so.dbg
*.mod.c
*.i
*.lst
*.symtypes
*.order
*.elf
*.tar
*.gz
*.bz2
*.lzma
*.xz
*.lz4
*.lzo
*.gcno
*.dwo
*.su
*.swo
*.swp

#
# Top-level generic files
#
/tags
/TAGS

#
# git files that we don't want to ignore even it they are dot-files
#
!.gitignore
!.mailmap

# cscope files
cscope.*
ncscope.*

# gnu global files
GPATH
GRTAGS
GSYMS
GTAGS

# id-utils files
ID

*.orig
*~
\#*#

#
# Leavings from module signing
#
extra_certificates
signing_key.pem
signing_key.priv
signing_key.x509
x509.genkey

# Kconfig presets
all.config

# Kdevelop4
*.kdev4
Loading

0 comments on commit 3d94679

Please sign in to comment.