-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DropbearServerPlugin] Initial version for review #121
base: master
Are you sure you want to change the base?
[DropbearServerPlugin] Initial version for review #121
Conversation
…red library & executable
… of Dropbear plugin
…de review feedback
|
@@ -0,0 +1,76 @@ | |||
--- a/Makefile.in 2016-07-21 20:47:09.000000000 +0530 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Patch needs appropriate format-patch header, including commit log providing a reason for the patch. For more info see: https://git-scm.com/docs/git-format-patch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, made the corrections and now created the patch with git format-patch header.
@@ -0,0 +1,398 @@ | |||
--- a/svr-main.c 2016-07-21 20:47:09.000000000 +0530 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Patch needs appropriate format-patch header, including commit log providing a reason for the patch. For more info see: https://git-scm.com/docs/git-format-patch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, made the corrections and now created the patch with git format-patch header.
@@ -0,0 +1,12 @@ | |||
--- a/configure.ac 2016-07-21 20:47:09.000000000 +0530 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Patch needs appropriate format-patch header, including commit log providing a reason for the patch. For more info see: https://git-scm.com/docs/git-format-patch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, made the corrections and now created the patch with git format-patch header.
@@ -0,0 +1,31 @@ | |||
--- a/libdropbear.h 2019-08-28 20:32:09.684490106 +0530 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Patch needs appropriate format-patch header, including commit log providing a reason for the patch. For more info see: https://git-scm.com/docs/git-format-patch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, made the corrections and now created the patch with git format-patch header.
@@ -0,0 +1,14 @@ | |||
--- a/libdropbear.pc.in 1970-01-01 05:30:00.000000000 +0530 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Patch needs appropriate format-patch header, including commit log providing a reason for the patch. For more info see: https://git-scm.com/docs/git-format-patch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, made the corrections and now created the patch with git format-patch header.
@@ -0,0 +1,172 @@ | |||
--- a/linkedlist.h 2019-07-11 14:07:04.040000000 +0530 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Patch needs appropriate format-patch header, including commit log providing a reason for the patch. For more info see: https://git-scm.com/docs/git-format-patch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, made the corrections and now created the patch with git format-patch header.
@@ -603,6 +603,13 @@ config BR2_PACKAGE_WPEFRAMEWORK_SYSTEMCOMMANDS | |||
help | |||
SystemCommands Plugin | |||
|
|||
config BR2_PACKAGE_WPEFRAMEWORK_SECURESHELLSERVER | |||
select BR2_PACKAGE_WPEFRAMEWORK_PLUGINS |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dont think this is needed, you're already in the wpeframework-plugins config right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, removed.
WPEFRAMEWORK_PLUGINS_VERSION = 8b70bd116e65f8824f060e0e26a4b1cfe65e27cd | ||
WPEFRAMEWORK_PLUGINS_SITE = $(call github,WebPlatformForEmbedded,WPEFrameworkPlugins,$(WPEFRAMEWORK_PLUGINS_VERSION)) | ||
WPEFRAMEWORK_PLUGINS_VERSION = 5d0769cea06138762ac8ecc102b5b8e5c9b3a863 | ||
WPEFRAMEWORK_PLUGINS_SITE = $(call github,s-rapolu,WPEFrameworkPlugins,$(WPEFRAMEWORK_PLUGINS_VERSION)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We cant point to your fork, this needs to be a commit on the main repository (master) that has the required changes to support the ssh server plugin.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, corrected the mistake and now pointing it to master.
@@ -72,6 +72,17 @@ ifeq ($(BR2_PACKAGE_WPEFRAMEWORK_DICTIONARY),y) | |||
WPEFRAMEWORK_PLUGINS_CONF_OPTS += -DPLUGIN_DICTIONARY=ON | |||
endif | |||
|
|||
ifeq ($(BR2_PACKAGE_WPEFRAMEWORK_SECURESHELLSERVER),y) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you move this down to other S related selections? Trying to organize this A-Z for readability.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. Corrected.
WPEFRAMEWORK_VERSION = aed13867c93fe76dc29d32abe4237559cc19b62c | ||
WPEFRAMEWORK_SITE = $(call github,WebPlatformForEmbedded,WPEFramework,$(WPEFRAMEWORK_VERSION)) | ||
WPEFRAMEWORK_VERSION = 2c1a62d177473c67c1abbd41147a051edb436433 | ||
WPEFRAMEWORK_SITE = $(call github,s-rapolu,WPEFramework,$(WPEFRAMEWORK_VERSION)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, cant point the entire buildroot to your fork. Needs to point to master with your changes merged in on the main repo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, corrected the mistake and now pointing it to master.
Signed-off-by: Suman Rapolu <[email protected]>
… and wpeframework-plugins.mk to refer main repositories instead of a forked repository
Please review it and let us know your feedback. |
Dropbear plugin implementation related changes in buildroot repository.