Introducing LunaBuild to the build flow (#36)
[lunaix-os.git] / lunaix-os / arch / i386 / LConfig
1
2 @Group
3 def x86_configurations():
4     @Term
5     def x86_enable_sse_feature():
6         """ 
7             Config whether to allow using SSE feature for certain
8             optimization
9         """
10         
11         type(bool)
12         default(False)
13
14         add_to_collection(architecture_support)
15
16
17     @Term
18     def x86_boot_options():
19         type(["multiboot"])
20         # type(["multiboot", "none"])
21         default("multiboot")
22
23     return v(arch) == "i386"