diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-09-05 15:10:31 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-09-06 12:15:24 +0200 |
commit | af08db027b6214306683c8cbf9980798c5f85977 (patch) | |
tree | 97211afd7b11bace6ce508984d110ddf10dc41f2 /prebuilt/common/etc/init.d | |
parent | dc5051ce0272ddb572aaa72ecd0e1d00ad9b0f83 (diff) | |
download | external_wget-replicant-11.tar.gz external_wget-replicant-11.tar.bz2 external_wget-replicant-11.zip |
This way:
- We can rebase more easily if needed
- We don't have to bring in the other part of vendor/lineage that
is potentially incompatible with what we have
wget was also moved in the top directory along the way.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'prebuilt/common/etc/init.d')
-rw-r--r-- | prebuilt/common/etc/init.d/00banner | 13 | ||||
-rwxr-xr-x | prebuilt/common/etc/init.d/90userinit | 9 |
2 files changed, 0 insertions, 22 deletions
diff --git a/prebuilt/common/etc/init.d/00banner b/prebuilt/common/etc/init.d/00banner deleted file mode 100644 index da6d487f..00000000 --- a/prebuilt/common/etc/init.d/00banner +++ /dev/null @@ -1,13 +0,0 @@ -#!/system/bin/sh -# -# Print startup info -# -L="log -p i -t lineage" - -$L "_ _ " -$L "| (_)_ __ ___ __ _ __ _ ___ ___ ___ " -$L "| | | '_ \\ / _ \\/ _\` |/ _\` |/ _ \\/ _ \\/ __|" -$L "| | | | | | __/ (_| | (_| | __/ (_) \\__ \\" -$L "|_|_|_| |_|\\___|\\__,_|\\__, |\\___|\\___/|___/" -$L " |___/" -$L "Welcome to Android `getprop ro.build.version.release` / LineageOS-`getprop ro.lineage.version`"; diff --git a/prebuilt/common/etc/init.d/90userinit b/prebuilt/common/etc/init.d/90userinit deleted file mode 100755 index fbf3360f..00000000 --- a/prebuilt/common/etc/init.d/90userinit +++ /dev/null @@ -1,9 +0,0 @@ -#!/system/bin/sh -# call userinit.sh if present in /data/local - -if [ -e /data/local/userinit.sh ]; -then - log -p i -t userinit "Executing /data/local/userinit.sh"; - /system/bin/sh /data/local/userinit.sh; - setprop lineage.userinit.active 1; -fi; |