Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c50fe3dc authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "newfs_msdos: switch to external/newfs_msdos."

parents 81101cb2 76858a06
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@ phony {
        "logwrapper_vendor",
        "mkshrc",
        "mkshrc_vendor",
        "newfs_msdos",
        "reboot",
        "sh",
        "sh.recovery",
+0 −9
Original line number Diff line number Diff line
@@ -26,7 +26,6 @@ cc_defaults {
        "toolbox.c",
        "getevent.c",
        "getprop.cpp",
        "newfs_msdos.c",
    ],
    generated_headers: [
        "toolbox_input_labels",
@@ -39,7 +38,6 @@ cc_defaults {
    symlinks: [
        "getevent",
        "getprop",
        "newfs_msdos",
    ],
}

@@ -62,10 +60,3 @@ cc_binary {
    defaults: ["toolbox_defaults"],
    srcs: ["r.c"],
}

cc_binary_host {
    name: "newfs_msdos",
    defaults: ["toolbox_defaults"],
    srcs: ["newfs_msdos.c"],
    cflags: ["-Dnewfs_msdos_main=main"]
}
+0 −0

File moved.

+1 −972

File changed.

Preview size limit exceeded, changes collapsed.

+15 −15
Original line number Diff line number Diff line
//
// Copyright (C) 2017 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.
//
/*
 * Copyright (C) 2017 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.
 */

#include <getopt.h>
#include <sys/system_properties.h>
Loading