Manual merge
Change-Id: I849703a709fe4bf9ea7181268221d9b648b2e73d
This commit is contained in:
commit
468f23ac2f
|
@ -1,20 +1,19 @@
|
|||
/* libs/pixelflinger/col32cb16blend.S
|
||||
**
|
||||
** (C) COPYRIGHT 2009 ARM Limited.
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
**
|
||||
*/
|
||||
*
|
||||
* Copyright (C) 2009 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
.text
|
||||
.align
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
/* libs/pixelflinger/col32cb16blend_neon.S
|
||||
**
|
||||
** (C) COPYRIGHT 2009 ARM Limited.
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
**
|
||||
*/
|
||||
*
|
||||
* Copyright (C) 2009 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
|
||||
.text
|
||||
.align
|
||||
|
|
|
@ -29,7 +29,8 @@ LOCAL_SRC_FILES:= \
|
|||
bltin/echo.c \
|
||||
init.c
|
||||
|
||||
LOCAL_MODULE:= sh
|
||||
LOCAL_MODULE:= ash
|
||||
LOCAL_MODULE_TAGS:= shell_ash
|
||||
|
||||
LOCAL_CFLAGS += -DSHELL -DWITH_LINENOISE
|
||||
|
||||
|
@ -51,3 +52,19 @@ make_ash_files:
|
|||
sh ./mkinit.sh $(PRIVATE_SRC_FILES)
|
||||
|
||||
include $(BUILD_EXECUTABLE)
|
||||
|
||||
|
||||
# create /system/bin/sh symlink to $(TARGET_SHELL)
|
||||
# not the optimal place for this, but a fitting one
|
||||
|
||||
OUTSYSTEMBINSH := $(TARGET_OUT)/bin/sh
|
||||
LOCAL_MODULE := systembinsh
|
||||
$(OUTSYSTEMBINSH): | $(TARGET_SHELL)
|
||||
$(OUTSYSTEMBINSH): LOCAL_MODULE := $(LOCAL_MODULE)
|
||||
$(OUTSYSTEMBINSH):
|
||||
@echo "Symlink: $@ -> $(TARGET_SHELL)"
|
||||
@rm -rf $@
|
||||
$(hide) ln -sf $(TARGET_SHELL) $@
|
||||
|
||||
ALL_DEFAULT_INSTALLED_MODULES += $(OUTSYSTEMBINSH)
|
||||
ALL_MODULES.$(LOCAL_MODULE).INSTALLED += $(OUTSYSTEMBINSH)
|
||||
|
|
Loading…
Reference in New Issue