Rename nit_entropy to entropy_view

Issue genodelabs/genode#3778
This commit is contained in:
Norman Feske
2020-06-19 15:48:43 +02:00
parent ee6b488fde
commit effedf5e26
12 changed files with 12 additions and 12 deletions

View File

@@ -0,0 +1 @@
_/src/entropy_view

View File

@@ -1,4 +1,4 @@
<runtime ram="4M" caps="128" binary="nit_entropy"> <runtime ram="4M" caps="128" binary="entropy_view">
<requires> <requires>
<gui/> <gui/>
@@ -7,7 +7,7 @@
<content> <content>
<rom label="ld.lib.so"/> <rom label="ld.lib.so"/>
<rom label="nit_entropy"/> <rom label="entropy_view"/>
</content> </content>
<config/> <config/>

View File

@@ -1 +0,0 @@
_/src/nit_entropy

View File

@@ -1,2 +1,2 @@
SRC_DIR = src/app/nit_entropy SRC_DIR = src/app/entropy_view
include $(GENODE_DIR)/repos/base/recipes/src/content.inc include $(GENODE_DIR)/repos/base/recipes/src/content.inc

View File

@@ -0,0 +1 @@
2020-06-19 628a1d591a9ba3f19abef0fe417da75855228cab

View File

@@ -1 +0,0 @@
-

View File

@@ -65,7 +65,7 @@ append config {
<resource name="RAM" quantum="1M"/> <resource name="RAM" quantum="1M"/>
</start> </start>
<start name="nit_entropy"> <start name="entropy_view">
<resource name="RAM" quantum="4M"/> <resource name="RAM" quantum="4M"/>
<route> <route>
<service name="Gui"> <child name="nitpicker"/> </service> <service name="Gui"> <child name="nitpicker"/> </service>
@@ -84,7 +84,7 @@ append config {
</config>} </config>}
build { build {
app/nit_entropy app/entropy_view
server/jitter_sponge server/jitter_sponge
} }
@@ -92,7 +92,7 @@ install_config $config
build_boot_image { build_boot_image {
jitter_sponge jitter_sponge
nit_entropy entropy_view
} }
run_genode_until forever run_genode_until forever

View File

@@ -21,7 +21,7 @@
#include <base/component.h> #include <base/component.h>
namespace Nit_entropy { namespace Entropy_view {
using namespace Genode; using namespace Genode;
typedef Surface_base::Point Point; typedef Surface_base::Point Point;
typedef Surface_base::Area Area; typedef Surface_base::Area Area;
@@ -31,7 +31,7 @@ namespace Nit_entropy {
}; };
struct Nit_entropy::Main struct Entropy_view::Main
{ {
enum { WIDTH = 256, HEIGHT = 256 }; enum { WIDTH = 256, HEIGHT = 256 };
@@ -94,4 +94,4 @@ struct Nit_entropy::Main
void Component::construct(Genode::Env &env) { void Component::construct(Genode::Env &env) {
static Nit_entropy::Main inst(env); } static Entropy_view::Main inst(env); }

View File

@@ -1,3 +1,3 @@
TARGET = nit_entropy TARGET = entropy_view
SRC_CC = main.cc SRC_CC = main.cc
LIBS = base LIBS = base