-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: This reverts D24086062 and D24134064. No other changes. Test Plan: Successfully built an image with bitbake. Reviewed By: vineelasmile fbshipit-source-id: 1349bcd979
- Loading branch information
1 parent
51e0176
commit 58376b8
Showing
12 changed files
with
299 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 0 additions & 7 deletions
7
meta-facebook/meta-galaxy100/recipes-core/systemd/systemd-serialgetty.bbappend
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
meta-facebook/meta-galaxy100/recipes-utils/repeater/repeater_0.1.bb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Copyright 2014-present Facebook. All Rights Reserved. | ||
# | ||
# This program file is free software; you can redistribute it and/or modify it | ||
# under the terms of the GNU General Public License as published by the | ||
# Free Software Foundation; version 2 of the License. | ||
# | ||
# This program is distributed in the hope that it will be useful, but WITHOUT | ||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
# for more details. | ||
# | ||
# | ||
|
||
SUMMARY = "Repeater Utilities" | ||
DESCRIPTION = "Util for Repeater" | ||
SECTION = "base" | ||
PR = "r1" | ||
|
||
LICENSE = "GPLv2" | ||
LIC_FILES_CHKSUM = "file://repeater_card.sh;beginline=5;endline=18;md5=0b1ee7d6f844d472fa306b2fee2167e0" | ||
|
||
SRC_URI = "file://repeater_card.sh \ | ||
file://repeater_scm.sh \ | ||
" | ||
S = "${WORKDIR}" | ||
|
||
DEPENDS += "update-rc.d-native" | ||
|
||
do_install() { | ||
#init | ||
install -d ${D}${sysconfdir}/init.d | ||
install -m 0755 repeater_card.sh ${D}${sysconfdir}/init.d/repeater_card.sh | ||
update-rc.d -r ${D} repeater_card.sh start 110 2 3 4 5 . | ||
install -m 0755 repeater_scm.sh ${D}${sysconfdir}/init.d/repeater_scm.sh | ||
update-rc.d -r ${D} repeater_scm.sh start 110 2 3 4 5 . | ||
} | ||
|
||
FILES_${PN} = "${sysconfdir}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.