Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bzy-080408 committed Nov 30, 2022
1 parent 1a9f889 commit f9e4b40
Show file tree
Hide file tree
Showing 2,972 changed files with 927,867 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
kind: pipeline
name: x86_64

platform:
os: linux
arch: amd64

steps:
- name: build
image: debian:buster
commands:
- nproc && grep Mem /proc/meminfo && df -hT .
- apt-get update -qq && apt-get install -yqq gcc-arm-none-eabi device-tree-compiler libfdt-dev make python > /dev/null
- make -j$(nproc) TOOLCHAIN_PREFIX=arm-none-eabi- msm8916-secondary

trigger:
event: [push, pull_request, tag]
339 changes: 339 additions & 0 deletions COPYING

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
Little Kernel (LK) was originally created by Travis Geiselbrecht
and published under the MIT License:

/*
* Copyright (c) 2008-2010 Travis Geiselbrecht
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

This fork of LK has been enhanced with code licensed under the
GNU GENERAL PUBLIC LICENSE (Version 2, June 1991), see COPYING for details.
All affected code files have been marked appropriately.

As such, the final linked version of this fork can only be re-distributed under
the terms and conditions of the GPLv2 (and no newer version).
Loading

0 comments on commit f9e4b40

Please sign in to comment.